forked from GoogleChromeLabs/browser-fs-access
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.6 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "browser-fs-access",
"version": "0.17.3",
"description": "File System Access API with legacy fallback in the browser.",
"browser": "./dist/esm/index.js",
"main": "./dist/esm/index.js",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"module": "./dist/esm/index.js",
"types": "./index.d.ts",
"scripts": {
"start": "npx http-server -o /demo/",
"clean": "shx rm -rf ./dist",
"build": "node esbuild.config.js",
"prepare": "npm run lint && npm run fix && npm run build",
"lint": "npx eslint . --ext .js,.mjs --fix --ignore-pattern dist/",
"fix": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChromeLabs/browser-fs-access.git"
},
"keywords": [
"file system access",
"file system access api",
"file system",
"ponyfill"
],
"files": [
"dist/",
"index.d.ts"
],
"author": "Thomas Steiner (https://blog.tomayac.com/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GoogleChromeLabs/browser-fs-access/issues"
},
"homepage": "https://github.com/GoogleChromeLabs/browser-fs-access#readme",
"devDependencies": {
"esbuild": "^0.13.12",
"eslint": "^7.28.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"http-server": "^0.12.3",
"prettier": "^2.3.1",
"shx": "^0.3.3"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"extends": [
"google",
"prettier"
],
"rules": {
"valid-jsdoc": "off"
}
}
}