-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.96 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
75
76
77
78
{
"name": "happy-opfs",
"description": "A browser-compatible fs module inspired by the Deno fs and @std/fs APIs, based on OPFS implementation.",
"author": "[email protected]",
"license": "GPL-3.0",
"version": "1.8.4",
"type": "module",
"source": "src/mod.ts",
"main": "dist/main.cjs",
"module": "dist/main.mjs",
"types": "dist/types.d.ts",
"files": [
"LICENSE",
"README.md",
"README.cn.md",
"package.json",
"docs",
"src",
"dist"
],
"sideEffects": false,
"scripts": {
"clean": "pnpm dlx rimraf .parcel-cache dist",
"check": "pnpm exec tsc --noEmit",
"lint": "pnpm exec eslint .",
"prebuild": "pnpm dlx rimraf dist && pnpm run check && pnpm run lint",
"build": "pnpm exec rollup --config rollup.config.mjs",
"predocs": "pnpm dlx rimraf docs",
"docs": "pnpm exec typedoc",
"prepublishOnly": "pnpm run build",
"start": "pnpm exec parcel serve tests/index.html --dist-dir dist/dev --port 8443 --https --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JiangJie/happy-opfs.git"
},
"keywords": [
"fs",
"system",
"file",
"directory",
"opfs",
"origin",
"private",
"worker",
"sync",
"async",
"upload",
"download",
"zip",
"unzip"
],
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.9.0",
"parcel": "^2.12.0",
"rollup": "^4.20.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"dependencies": {
"@happy-ts/fetch-t": "^1.3.2",
"@std/path": "npm:@jsr/[email protected]",
"fflate": "^0.8.2",
"happy-rusty": "^1.5.0",
"tiny-future": "^1.0.0",
"tiny-invariant": "^1.3.3"
},
"@parcel/resolver-default": {
"packageExports": true
},
"packageManager": "[email protected]"
}