-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.01 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
{
"name": "node-fuse-demo",
"version": "0.0.1",
"description": "",
"license": "MIT",
"author": {
"name": "Andrew Mackrodt",
"email": "andrewmackrodt@gmail.com",
"url": "https://github.com/andrewmackrodt/node-fuse-demo"
},
"main": "index.js",
"scripts": {
"build": "run-s clean && tsc",
"build:check": "tsc --noEmit",
"check": "run-p build:check format:check lint:check",
"clean": "shx rm -rf \"./dist/\"",
"format": "prettier --write \"./src/**/*.ts\"",
"format:check": "prettier --check \"./src/**/*.ts\"",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"start": "tsx ./src/index.ts",
"unmount": "tsx ./src/index.ts --unmount"
},
"dependencies": {
"colors": "^1.4.0",
"node-fuse-bindings": "^2.12.4",
"tslib": "^2.8.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@stylistic/eslint-plugin-ts": "^3.0.0",
"@types/node": "^20.17.16",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^9.19.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-perfectionist": "^4.7.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"npm-run-all2": "^8.0.4",
"prettier": "^3.7.4",
"prettier-plugin-jsdoc": "^1.8.0",
"shx": "^0.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.26.2+sha512.0e308ff2005fc7410366f154f625f6631ab2b16b1d2e70238444dd6ae9d630a8482d92a451144debc492416896ed16f7b114a86ec68b8404b2443869e68ffda6",
"engines": {
"node": ">=20"
},
"pnpm": {
"overrides": {
"node-gyp@<11.0.0": "^11.0.0",
"node-gyp-build@<4.8.0": "^4.8.4"
},
"patchedDependencies": {
"node-fuse-bindings": "patches/node-fuse-bindings.patch"
},
"onlyBuiltDependencies": [
"esbuild",
"node-fuse-bindings"
]
}
}