-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.23 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.23 KB
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
92
93
94
{
"name": "@zenfs/core",
"version": "2.5.6",
"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://zenfs.dev/core",
"author": "James Prevett <jp@jamespre.dev> (https://jamespre.dev)",
"contributors": [
"John Vilk <jvilk@cs.umass.edu>"
],
"license": "LGPL-3.0-or-later",
"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/node/*",
"./promises": "./dist/node/promises.js",
"./readline": "./dist/node/readline.js",
"./constants": "./dist/constants.js",
"./path": "./dist/path.js",
"./eslint": "./eslint.shared.js",
"./tests/*": "./tests/*",
"./types/*": "./types/*"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"spdx:check": "npx lice -a src tests/*.ts tests/**/*.test.ts",
"spdx:fix": "npx lice -aw src tests/*.ts tests/**/*.test.ts",
"lint": "eslint src tests",
"test": "npx zenfs-test --clean; npx zenfs-test -abcp; tests/fetch/run.sh; npx zenfs-test --report",
"build": "tsc -p tsconfig.json",
"build:docs": "typedoc",
"dev": "tsc -p tsconfig.json --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@types/node": "^25.2.0",
"buffer": "^6.0.3",
"eventemitter3": "^5.0.1",
"kerium": "^1.3.4",
"memium": "^0.4.0",
"readable-stream": "^4.5.2",
"utilium": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@octokit/action": "^8.0.4",
"c8": "^10.1.3",
"eslint": "^10.1.0",
"globals": "^17.3.0",
"prettier": "^3.2.5",
"tsx": "^4.19.1",
"typedoc": "^0.28.18",
"typescript": "^6.0.0",
"typescript-eslint": "^8.58.0"
}
}