-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "@yarnpkg/pnp",
"version": "4.0.0-rc.48",
"stableVersion": "3.3.4",
"license": "BSD-2-Clause",
"main": "./sources/index.ts",
"exports": {
".": "./sources/index.ts",
"./sources/esm-loader/loaderFlags": "./sources/esm-loader/loaderFlags.ts",
"./package.json": "./package.json"
},
"dependencies": {
"@types/node": "^18.15.11",
"@yarnpkg/fslib": "workspace:^"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/semver": "^7.1.0",
"@yarnpkg/libzip": "workspace:^",
"arg": "^5.0.2",
"esbuild": "npm:esbuild-wasm@^0.15.15",
"rollup": "^2.59.0",
"rollup-plugin-esbuild": "^3.0.2",
"semver": "^7.1.2",
"tslib": "^2.4.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",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
}
},
"files": [
"/lib/**/*"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/yarnpkg/berry.git",
"directory": "packages/yarnpkg-pnp"
},
"engines": {
"node": ">=18.12.0"
}
}