-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
91 lines (91 loc) · 1.98 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
90
91
{
"name": "@zenfs/core",
"version": "1.6.9",
"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"
},
"files": [
"dist",
"tests",
"license.md",
"eslint.shared.js"
],
"type": "module",
"homepage": "https://github.com/zen-fs/core",
"author": "James Prevett <jp@jamespre.dev> (https://jamespre.dev)",
"contributors": [
"John Vilk <jvilk@cs.umass.edu>"
],
"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": ">= 16"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*",
"./promises": "./dist/emulation/promises.js",
"./path": "./dist/emulation/path.js",
"./eslint": "./eslint.shared.js",
"./tests/*": "./tests/*"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src tests",
"test": "tsx --test --experimental-test-coverage",
"pretest": "npm run build",
"build": "tsc -p tsconfig.json",
"build:docs": "typedoc",
"dev": "npm run build -- --watch",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*": [
"prettier --write"
]
},
"dependencies": {
"@types/node": "^22.10.1",
"@types/readable-stream": "^4.0.10",
"buffer": "^6.0.3",
"eventemitter3": "^5.0.1",
"readable-stream": "^4.5.2",
"utilium": "^1.1.1"
},
"optionalDependencies": {
"minimatch": "^9.0.3"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/eslint__js": "^8.42.3",
"c8": "^10.1.2",
"eslint": "^9.15.0",
"globals": "^15.9.0",
"lint-staged": "^15.2.7",
"prettier": "^3.2.5",
"tsx": "^4.19.1",
"typedoc": "^0.27.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}