forked from zen-fs/archives
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.41 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.41 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
{
"name": "@zenfs/zip",
"version": "0.5.2",
"description": "Zip backend for ZenFS",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/james-pre"
},
"main": "dist/index.js",
"types": "src/index.ts",
"keywords": [
"filesystem",
"node",
"storage"
],
"type": "module",
"homepage": "https://github.com/zen-fs/zip",
"author": "James Prevett <jp@jamespre.dev> (https://jamespre.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zen-fs/zip.git"
},
"bugs": {
"url": "https://github.com/zen-fs/zip/issues"
},
"engines": {
"node": ">= 18"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
},
"files": [
"dist",
"src",
"license.md",
"tsconfig.json"
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src",
"test": "tsx --test --experimental-test-coverage",
"build": "tsc -p tsconfig.json",
"build:docs": "typedoc --out docs --name 'ZenFS Zip' src/index.ts",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/node": "^20.12.7",
"eslint": "^9.12.0",
"globals": "^15.10.0",
"prettier": "^3.2.5",
"tsx": "^4.19.1",
"typedoc": "^0.26.10",
"typescript": "^5.5.0",
"typescript-eslint": "^8.8.1"
},
"peerDependencies": {
"@zenfs/core": "^1.0.11"
},
"dependencies": {
"fflate": "^0.8.2",
"utilium": "^1.0.0"
}
}