-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "fsa-mock",
"version": "1.0.0",
"type": "module",
"main": "./dist/fsa-mock.umd.cjs",
"module": "./dist/fsa-mock.js",
"types": "./dist/fsa-mock.d.ts",
"exports": {
".": {
"import": "./dist/fsa-mock.js",
"require": "./dist/fsa-mock.umd.cjs"
}
},
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"lint": "npm run prettier && eslint ./src --ext .ts",
"prettier": "prettier --write \"src/**/*.ts\""
},
"files": ["dist/"],
"description": "File System Access API mock",
"keywords": ["file system", "file system access", "mock", "test"],
"author": "Alexander Alexandrov <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/alxcube/fsa-mock",
"repository": {
"type": "git",
"url": "https://github.com/alxcube/fsa-mock.git"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitest/browser": "^0.34.6",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-dts": "^3.6.3",
"vitest": "^0.34.6",
"webdriverio": "^8.21.0"
},
"dependencies": {
"@types/wicg-file-system-access": "^2023.10.2"
}
}