-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.58 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.58 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
{
"name": "@zenfs/linux",
"version": "0.0.1",
"description": "Emulation of various Linux things in ZenFS",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/james-pre"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"homepage": "https://github.com/zen-fs/linux",
"author": "James Prevett <jp@jamespre.dev> (https://jamespre.dev)",
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/zen-fs/linux.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"bugs": {
"url": "https://github.com/zen-fs/linux/issues"
},
"files": [
"dist",
"LICENSE.md",
"tsconfig.json"
],
"engines": {
"node": ">= 22"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src",
"build": "tsc -p tsconfig.json",
"build:docs": "typedoc",
"test": "npx zenfs-test -abcf",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"globals": "^16.0.0",
"prettier": "^3.2.5",
"tsx": "^4.19.2",
"typedoc": "^0.28.18",
"typescript": "^6.0.0",
"typescript-eslint": "^8.58.0"
},
"peerDependencies": {
"@zenfs/core": "^2.4.0",
"kerium": "^1.3.4",
"utilium": "^3.0.0"
},
"keywords": [
"filesystem",
"node",
"storage",
"linux",
"emulation"
],
"prettier": {
"singleQuote": true,
"useTabs": true,
"trailingComma": "es5",
"tabWidth": 4,
"printWidth": 150,
"arrowParens": "avoid"
}
}