-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
74 lines (74 loc) · 1.93 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "browser-fs-access",
"version": "0.35.0",
"description": "File System Access API with legacy fallback in the browser.",
"type": "module",
"source": "./src/index.js",
"exports": {
".": {
"types": "./index.d.ts",
"module": "./dist/index.modern.js",
"import": "./dist/index.modern.js",
"require": "./dist/index.cjs",
"browser": "./dist/index.modern.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.modern.js",
"types": "./index.d.ts",
"files": [
"dist/",
"index.d.ts"
],
"scripts": {
"start": "npx http-server -o /demo/",
"clean": "shx rm -rf ./dist",
"build": "npm run clean && microbundle -f modern,cjs --no-sourcemap --no-generateTypes",
"dev": "microbundle watch",
"prepare": "npm run lint && npm run fix && npm run build",
"lint": "npx eslint . --ext .js,.mjs --fix --ignore-pattern dist/",
"fix": "npx prettier --write ."
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleChromeLabs/browser-fs-access.git"
},
"keywords": [
"file system access",
"file system access api",
"file system",
"ponyfill"
],
"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": {
"eslint": "^8.49.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.0.0",
"http-server": "^14.1.1",
"microbundle": "^0.15.1",
"prettier": "^3.0.3",
"shx": "^0.3.4"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"extends": [
"google",
"prettier"
],
"rules": {
"valid-jsdoc": "off"
}
}
}