forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) Β· 979 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) Β· 979 Bytes
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
{
"name": "@yarnpkg/plugin-exec",
"version": "2.2.0-rc.2",
"license": "BSD-2-Clause",
"main": "./sources/index.ts",
"dependencies": {
"@yarnpkg/builder": "workspace:^3.0.0-rc.2",
"@yarnpkg/fslib": "workspace:^2.5.0-rc.2",
"tslib": "^1.13.0"
},
"peerDependencies": {
"@yarnpkg/core": "^3.0.0-rc.2"
},
"devDependencies": {
"@yarnpkg/core": "workspace:*",
"typescript": "beta"
},
"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://git@github.com/yarnpkg/berry.git",
"directory": "packages/plugin-exec"
},
"publishConfig": {
"main": "./lib/index.js",
"typings": "./lib/index.d.ts"
},
"files": [
"/lib/**/*"
],
"engines": {
"node": ">=10.19.0"
},
"stableVersion": "2.1.4"
}