-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
package.json
52 lines (52 loc) Β· 1.16 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
{
"name": "@yarnpkg/plugin-npm",
"version": "3.0.1",
"license": "BSD-2-Clause",
"main": "./sources/index.ts",
"exports": {
".": "./sources/index.ts",
"./package.json": "./package.json"
},
"dependencies": {
"@yarnpkg/fslib": "workspace:^",
"enquirer": "^2.3.6",
"lodash": "^4.17.15",
"semver": "^7.1.2",
"ssri": "^6.0.1",
"tslib": "^2.4.0"
},
"peerDependencies": {
"@yarnpkg/core": "workspace:^",
"@yarnpkg/plugin-pack": "workspace:^"
},
"devDependencies": {
"@types/lodash": "^4.14.136",
"@types/semver": "^7.1.0",
"@types/ssri": "^6.0.1",
"@yarnpkg/core": "workspace:^",
"@yarnpkg/plugin-pack": "workspace:^"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/yarnpkg/berry.git",
"directory": "packages/plugin-npm"
},
"scripts": {
"postpack": "rm -rf lib",
"prepack": "run build:compile \"$(pwd)\""
},
"publishConfig": {
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
}
},
"files": [
"/lib/**/*"
],
"engines": {
"node": ">=18.12.0"
},
"stableVersion": "3.0.1"
}