forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) Β· 2.29 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@yarnpkg/core",
"version": "4.1.1",
"license": "BSD-2-Clause",
"main": "./sources/index.ts",
"exports": {
".": "./sources/index.ts",
"./package.json": "./package.json"
},
"sideEffects": false,
"dependencies": {
"@arcanis/slice-ansi": "^1.1.1",
"@types/semver": "^7.1.0",
"@types/treeify": "^1.0.0",
"@yarnpkg/fslib": "workspace:^",
"@yarnpkg/libzip": "workspace:^",
"@yarnpkg/parsers": "workspace:^",
"@yarnpkg/shell": "workspace:^",
"camelcase": "^5.3.1",
"chalk": "^3.0.0",
"ci-info": "^4.0.0",
"clipanion": "^4.0.0-rc.2",
"cross-spawn": "7.0.3",
"diff": "^5.1.0",
"dotenv": "^16.3.1",
"fast-glob": "^3.2.2",
"got": "^11.7.0",
"lodash": "^4.17.15",
"micromatch": "^4.0.2",
"p-limit": "^2.2.0",
"semver": "^7.1.2",
"strip-ansi": "^6.0.0",
"tar": "^6.0.5",
"tinylogic": "^2.0.0",
"treeify": "^1.1.0",
"tslib": "^2.4.0",
"tunnel": "^0.0.6"
},
"devDependencies": {
"@octokit/webhooks-types": "^7.3.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/comment-json": "^1.1.1",
"@types/cross-spawn": "6.0.0",
"@types/diff": "^5.0.0",
"@types/lodash": "^4.14.136",
"@types/micromatch": "^4.0.1",
"@types/node": "^18.17.15",
"@types/tar": "^4.0.4",
"@types/tunnel": "^0.0.0",
"@yarnpkg/cli": "workspace:^",
"@yarnpkg/plugin-link": "workspace:^",
"@yarnpkg/plugin-npm": "workspace:^",
"@yarnpkg/plugin-pnp": "workspace:^",
"comment-json": "^2.2.0",
"esbuild": "npm:esbuild-wasm@^0.15.15",
"rollup": "^2.59.0",
"rollup-plugin-esbuild": "^3.0.2",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"build:zip:worker": "rollup -c",
"update:zip:worker": "run build:zip:worker",
"postpack": "rm -rf lib",
"prepack": "run build:compile \"$(pwd)\""
},
"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-core"
},
"engines": {
"node": ">=18.12.0"
},
"stableVersion": "4.1.1"
}