forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "@berry/cli",
"private": true,
"main": "./sources/index.ts",
"bin": {
"berry": "./bin/run.js"
},
"dependencies": {
"@berry/core": "workspace:*",
"@berry/fslib": "workspace:*",
"@berry/parsers": "workspace:*",
"@berry/shell": "workspace:*",
"@manaflair/concierge": "^0.10.2",
"chalk": "^2.4.1",
"execa": "^1.0.0",
"joi": "^13.6.0",
"semver": "^5.6.0",
"tmp": "^0.0.33"
},
"devDependencies": {
"@berry/builder": "workspace:*",
"@berry/plugin-constraints": "workspace:*",
"@berry/plugin-essentials": "workspace:*",
"@berry/plugin-file": "workspace:*",
"@berry/plugin-github": "workspace:*",
"@berry/plugin-http": "workspace:*",
"@berry/plugin-hub": "workspace:*",
"@berry/plugin-init": "workspace:*",
"@berry/plugin-link": "workspace:*",
"@berry/plugin-npm": "workspace:*",
"@berry/plugin-pnp": "workspace:*",
"@berry/plugin-typescript": "workspace:*",
"@berry/pnp": "workspace:*"
},
"scripts": {
"build:cli": "run @berry-build-bundle",
"run:cli": "run @berry-run"
},
"@berry/builder": {
"bundles": {
"standard": [
"@berry/plugin-essentials",
"@berry/plugin-init",
"@berry/plugin-constraints",
"@berry/plugin-file",
"@berry/plugin-github",
"@berry/plugin-http",
"@berry/plugin-link",
"@berry/plugin-npm",
"@berry/plugin-pnp"
]
}
}
}