-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.49 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
{
"name": "@zenfs/dom",
"version": "1.0.6",
"description": "DOM backends for ZenFS",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/james-pre"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"homepage": "https://github.com/zen-fs/dom",
"author": "James Prevett <[email protected]> (https://jamespre.dev)",
"contributors": [
"David Konsumer <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zen-fs/dom.git"
},
"bugs": {
"url": "https://github.com/zen-fs/dom/issues"
},
"files": [
"dist",
"license.md",
"tsconfig.json"
],
"engines": {
"node": ">= 18"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*",
"./devices": "./dist/devices/index.js"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src",
"build": "tsc -p tsconfig.json",
"build:docs": "typedoc --out docs --name 'ZenFS DOM' src/index.ts",
"test": "echo No tests yet",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"eslint": "^9.12.0",
"globals": "^15.10.0",
"prettier": "^3.2.5",
"tsx": "^4.19.2",
"typedoc": "^0.26.10",
"typescript": "^5.5.0",
"typescript-eslint": "^8.8.1"
},
"peerDependencies": {
"@zenfs/core": "^1.3.0"
},
"optionalDependencies": {
"fake-indexeddb": "^6.0.0",
"file-system-access": "^1.0.4"
},
"keywords": [
"filesystem",
"node",
"storage"
]
}