forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) Β· 1001 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
34
35
36
37
38
39
40
41
{
"name": "@yarnpkg/plugin-stage",
"version": "2.1.2",
"license": "BSD-2-Clause",
"main": "./sources/index.ts",
"dependencies": {
"@yarnpkg/fslib": "workspace:^2.3.0",
"clipanion": "^2.6.2",
"tslib": "^1.13.0"
},
"peerDependencies": {
"@yarnpkg/cli": "^2.3.3",
"@yarnpkg/core": "^2.3.1"
},
"devDependencies": {
"@yarnpkg/builder": "workspace:^2.1.2",
"@yarnpkg/cli": "workspace:^2.3.3",
"@yarnpkg/core": "workspace:^2.3.1",
"typescript": "4.1.0-beta"
},
"scripts": {
"build:plugin-stage": "builder build plugin",
"update-local": "yarn build:plugin-stage && 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/**/*"
],
"engines": {
"node": ">=10.19.0"
}
}