forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) Β· 1.18 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
{
"name": "@yarnpkg/pnp",
"version": "4.0.0-rc.10",
"license": "BSD-2-Clause",
"main": "./sources/index.ts",
"dependencies": {
"@types/node": "^13.7.0",
"@yarnpkg/fslib": "workspace:^"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^11.0.1",
"@yarnpkg/libzip": "workspace:^",
"esbuild": "npm:esbuild-wasm@^0.11.20",
"resolve.exports": "^1.1.0",
"rollup": "^2.59.0",
"rollup-plugin-esbuild": "^3.0.2",
"tslib": "^1.13.0"
},
"scripts": {
"build:pnp:hook": "rollup -c",
"update:pnp:hook": "run build:pnp:hook && yarn install",
"build:pnp": "rollup -c",
"postpack": "rm -rf lib",
"prepack": "run build:compile packages/yarnpkg-pnp --emitDeclarationOnly && run build:pnp",
"release": "yarn npm publish",
"update-local": "run build:pnp:hook"
},
"publishConfig": {
"main": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"files": [
"/lib/**/*"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/yarnpkg/berry.git",
"directory": "packages/yarnpkg-pnp"
},
"engines": {
"node": ">=14.15.0"
},
"stableVersion": "3.2.0"
}