-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
89 lines (89 loc) · 2.01 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@zenfs/core",
"version": "1.11.2",
"description": "A filesystem, anywhere",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/james-pre"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"filesystem",
"node",
"storage"
],
"bin": {
"make-index": "scripts/make-index.js",
"zenfs-test": "scripts/test.js",
"zci": "scripts/ci-cli.js"
},
"files": [
"dist",
"tests",
"types",
"license.md",
"eslint.shared.js"
],
"type": "module",
"homepage": "https://github.com/zen-fs/core",
"author": "James Prevett <[email protected]> (https://jamespre.dev)",
"contributors": [
"John Vilk <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zen-fs/core.git"
},
"bugs": {
"url": "https://github.com/zen-fs/core/issues"
},
"engines": {
"node": ">= 18"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*",
"./emulation/*": "./dist/vfs/*",
"./promises": "./dist/vfs/promises.js",
"./path": "./dist/vfs/path.js",
"./eslint": "./eslint.shared.js",
"./tests/*": "./tests/*",
"./types/*": "./types/*"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src tests",
"test": "npx zenfs-test --clean; npx zenfs-test -abcfp; tests/fetch/run.sh; npx zenfs-test --report",
"build": "tsc -p tsconfig.json",
"build:docs": "typedoc",
"dev": "npm run build -- --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@types/node": "^22.10.1",
"buffer": "^6.0.3",
"eventemitter3": "^5.0.1",
"readable-stream": "^4.5.2",
"utilium": "^1.3.3"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@octokit/action": "^7.0.0",
"@types/eslint__js": "^8.42.3",
"c8": "^10.1.2",
"eslint": "^9.15.0",
"globals": "^15.9.0",
"prettier": "^3.2.5",
"tsx": "^4.19.1",
"typedoc": "^0.27.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}