forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) Β· 2.85 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/cli",
"version": "2.0.0-rc.31",
"main": "./sources/index.ts",
"dependencies": {
"@yarnpkg/fslib": "workspace:^2.0.0-rc.17",
"@yarnpkg/parsers": "workspace:^2.0.0-rc.10",
"@yarnpkg/plugin-compat": "workspace:^2.0.0-rc.9",
"@yarnpkg/plugin-constraints": "workspace:^2.0.0-rc.13",
"@yarnpkg/plugin-dlx": "workspace:^2.0.0-rc.13",
"@yarnpkg/plugin-essentials": "workspace:^2.0.0-rc.25",
"@yarnpkg/plugin-file": "workspace:^2.0.0-rc.12",
"@yarnpkg/plugin-git": "workspace:^2.0.0-rc.17",
"@yarnpkg/plugin-github": "workspace:^2.0.0-rc.14",
"@yarnpkg/plugin-http": "workspace:^2.0.0-rc.11",
"@yarnpkg/plugin-init": "workspace:^2.0.0-rc.12",
"@yarnpkg/plugin-link": "workspace:^2.0.0-rc.11",
"@yarnpkg/plugin-node-modules": "workspace:^2.0.0-rc.8",
"@yarnpkg/plugin-npm": "workspace:^2.0.0-rc.17",
"@yarnpkg/plugin-npm-cli": "workspace:^2.0.0-rc.16",
"@yarnpkg/plugin-pack": "workspace:^2.0.0-rc.19",
"@yarnpkg/plugin-patch": "workspace:^2.0.0-rc.6",
"@yarnpkg/plugin-pnp": "workspace:^2.0.0-rc.19",
"@yarnpkg/plugin-version": "workspace:^2.0.0-rc.21",
"@yarnpkg/shell": "workspace:^2.0.0-rc.10",
"chalk": "^3.0.0",
"clipanion": "^2.1.5",
"promise.prototype.finally": "^3.1.1",
"semver": "^7.1.2",
"yup": "^0.27.0"
},
"devDependencies": {
"@types/promise.prototype.finally": "^2.0.3",
"@yarnpkg/builder": "workspace:^2.0.0-rc.19",
"@yarnpkg/core": "workspace:^2.0.0-rc.25",
"@yarnpkg/monorepo": "workspace:0.0.0",
"@yarnpkg/pnpify": "workspace:^2.0.0-rc.20",
"micromatch": "^4.0.2",
"typescript": "^3.8.3"
},
"peerDependencies": {
"@yarnpkg/core": "^2.0.0-rc.25"
},
"scripts": {
"postpack": "rm -rf lib",
"prepack": "run build:compile \"$(pwd)\"",
"build:cli+hook": "run build:pnp:hook && builder build bundle",
"build:cli": "builder build bundle",
"run:cli": "builder run",
"update-local": "run build:cli --no-git-hash && rsync -a --delete bundles/ bin/"
},
"publishConfig": {
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": null
},
"files": [
"/lib/**/*",
"!/lib/pluginConfiguration.*",
"!/lib/cli.*"
],
"@yarnpkg/builder": {
"bundles": {
"standard": [
"@yarnpkg/plugin-essentials",
"@yarnpkg/plugin-compat",
"@yarnpkg/plugin-dlx",
"@yarnpkg/plugin-file",
"@yarnpkg/plugin-git",
"@yarnpkg/plugin-github",
"@yarnpkg/plugin-http",
"@yarnpkg/plugin-init",
"@yarnpkg/plugin-link",
"@yarnpkg/plugin-node-modules",
"@yarnpkg/plugin-npm",
"@yarnpkg/plugin-npm-cli",
"@yarnpkg/plugin-pack",
"@yarnpkg/plugin-patch",
"@yarnpkg/plugin-pnp"
]
}
},
"repository": {
"type": "git",
"url": "ssh://git@github.com/yarnpkg/berry.git"
}
}