-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.43 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
{
"name": "@zenfs/iso",
"version": "0.3.3",
"description": "Iso 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/iso",
"author": "James Prevett <[email protected]> (https://jamespre.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zen-fs/iso.git"
},
"bugs": {
"url": "https://github.com/zen-fs/iso/issues"
},
"engines": {
"node": ">= 18"
},
"files": [
"dist",
"license.md",
"tsconfig.json"
],
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src",
"build": "tsc -p tsconfig.json",
"build:docs": "typedoc --out docs --name 'ZenFS ISO' src/index.ts",
"test": "tsx --test --experimental-test-coverage",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@stylistic/eslint-plugin": "^2.8.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.12.7",
"eslint": "^9.11.1",
"prettier": "^3.2.5",
"tsx": "^4.19.1",
"typedoc": "^0.26.7",
"typescript": "^5.5.0",
"typescript-eslint": "^8.8.0"
},
"peerDependencies": {
"@zenfs/core": "^1.2.0"
},
"dependencies": {
"utilium": "^1.0.0"
}
}