forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) Β· 830 Bytes
/
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
{
"name": "@yarnpkg/plugin-exec",
"version": "2.0.0-rc.16",
"main": "./sources/index.ts",
"dependencies": {
"@yarnpkg/builder": "workspace:^2.0.0-rc.19",
"@yarnpkg/fslib": "workspace:^2.0.0-rc.17"
},
"peerDependencies": {
"@yarnpkg/core": "^2.0.0-rc.24"
},
"devDependencies": {
"@yarnpkg/core": "workspace:^2.0.0-rc.24",
"typescript": "^3.7.5"
},
"scripts": {
"build:plugin-exec": "builder build plugin",
"update-local": "yarn build:plugin-exec && rsync -a --delete bundles/ bin/",
"postpack": "rm -rf lib",
"prepack": "run build:compile \"$(pwd)\""
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/yarnpkg/berry.git"
},
"publishConfig": {
"main": "./lib/index.js",
"typings": "./lib/index.d.ts"
},
"files": [
"/lib/**/*"
]
}