-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"name": "@pnpm/mount-modules",
"version": "0.4.14",
"description": "Mounts a node_modules directory with FUSE",
"main": "lib/index.js",
"bin": "bin/mount-modules.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=16.14"
},
"files": [
"lib",
"!*.map",
"bin"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"pretest": "pnpm install --dir=test/__fixtures__/simple",
"_test": "pnpm pretest && jest",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/modules-mounter/daemon",
"keywords": [
"pnpm8",
"pnpm",
"shrinkwrap",
"lockfile"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/modules-mounter/daemon#readme",
"peerDependencies": {
"@pnpm/logger": "^5.0.0"
},
"devDependencies": {
"@pnpm/mount-modules": "workspace:*",
"@types/normalize-path": "^3.0.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"@pnpm/cafs": "workspace:*",
"@pnpm/config": "workspace:*",
"@pnpm/dependency-path": "workspace:*",
"@pnpm/lockfile-file": "workspace:*",
"@pnpm/lockfile-utils": "workspace:*",
"@pnpm/logger": "^5.0.0",
"@pnpm/store-path": "workspace:*",
"@pnpm/types": "workspace:*",
"hyperdrive-schemas": "^2.0.0",
"load-json-file": "^6.2.0",
"normalize-path": "^3.0.0"
},
"funding": "https://opencollective.com/pnpm",
"optionalDependencies": {
"fuse-native": "^2.2.6"
},
"exports": {
".": "./lib/index.js"
}
}