forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) Β· 894 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
{
"name": "@yarnpkg/plugin-patch",
"version": "3.0.0",
"license": "BSD-2-Clause",
"main": "./sources/index.ts",
"dependencies": {
"@yarnpkg/fslib": "workspace:^2.5.0",
"@yarnpkg/libzip": "workspace:^2.2.2",
"clipanion": "^3.0.1",
"tslib": "^1.13.0"
},
"peerDependencies": {
"@yarnpkg/cli": "^3.0.0",
"@yarnpkg/core": "^3.0.0"
},
"devDependencies": {
"@yarnpkg/cli": "workspace:*",
"@yarnpkg/core": "workspace:*"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/yarnpkg/berry.git",
"directory": "packages/plugin-patch"
},
"scripts": {
"postpack": "rm -rf lib",
"prepack": "run build:compile \"$(pwd)\""
},
"publishConfig": {
"main": "./lib/index.js",
"typings": "./lib/index.d.ts"
},
"files": [
"/lib/**/*"
],
"engines": {
"node": ">=12 <14 || 14.2 - 14.9 || >14.10.0"
}
}