forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) Β· 911 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
{
"name": "@yarnpkg/plugin-pack",
"version": "2.0.0-rc.17",
"main": "./sources/index.ts",
"dependencies": {
"@yarnpkg/fslib": "workspace:^2.0.0-rc.15",
"clipanion": "^2.1.5",
"micromatch": "^4.0.2",
"tar-stream": "^2.0.1"
},
"peerDependencies": {
"@yarnpkg/cli": "^2.0.0-rc.28",
"@yarnpkg/core": "^2.0.0-rc.22"
},
"devDependencies": {
"@types/micromatch": "^3.1.0",
"@types/tar-stream": "1.6.0",
"@yarnpkg/cli": "workspace:^2.0.0-rc.28",
"@yarnpkg/core": "workspace:^2.0.0-rc.22",
"@yarnpkg/plugin-stage": "workspace:^2.0.0-rc.15"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/yarnpkg/berry.git"
},
"scripts": {
"postpack": "rm -rf lib",
"prepack": "run build:compile \"$(pwd)\""
},
"publishConfig": {
"main": "./lib/index.js",
"typings": "./lib/index.d.ts"
},
"files": [
"/lib/**/*"
]
}