-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"name": "@pnpm/plugin-trusted-deps",
"version": "0.3.0-2",
"description": "A list of OSS packages that are known to require lifecycle scripts to function properly",
"main": "index.js",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./allowBuilds.json": "./allowBuilds.json",
"./allow.json": "./allow.json",
"./pnpmfile.cjs": "./pnpmfile.cjs"
},
"files": [
"index.js",
"index.mjs",
"allow.json",
"allowBuilds.json",
"untrusted.js",
"pnpmfile.cjs"
],
"scripts": {
"lint": "eslint .",
"test": "node updateList.mjs && node test.js && node test-esm.mjs",
"update-list": "node updateList.mjs",
"prepublishOnly": "pnpm update-list"
},
"keywords": [
"pnpm-config"
],
"license": "MIT",
"packageManager": "pnpm@11.0.0-beta.2",
"devEngines": {
"runtime": {
"name": "node",
"version": "24",
"onFail": "download"
}
},
"devDependencies": {
"eslint": "^9.39.2",
"neostandard": "^0.12.2"
},
"funding": "https://opencollective.com/pnpm",
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/trusted-deps.git"
},
"homepage": "https://github.com/pnpm/trusted-deps#readme",
"bugs": {
"url": "https://github.com/pnpm/trusted-deps/issues"
}
}