forked from yarnpkg/berry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) Β· 1.32 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@yarnpkg/shell",
"version": "4.0.2",
"license": "BSD-2-Clause",
"main": "./sources/index.ts",
"bin": "./sources/boot-cli-dev.js",
"exports": {
".": "./sources/index.ts",
"./cli": "./sources/boot-cli-dev.js",
"./package.json": "./package.json"
},
"dependencies": {
"@yarnpkg/fslib": "workspace:^",
"@yarnpkg/parsers": "workspace:^",
"chalk": "^3.0.0",
"clipanion": "^4.0.0-rc.2",
"cross-spawn": "7.0.3",
"fast-glob": "^3.2.2",
"micromatch": "^4.0.2",
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/cross-spawn": "6.0.0",
"@types/micromatch": "^4.0.1",
"@yarnpkg/monorepo": "workspace:^",
"strip-ansi": "^6.0.0"
},
"scripts": {
"postpack": "rm -rf lib",
"prepack": "run build:compile \"$(pwd)\"",
"release": "yarn npm publish",
"test:shell": "run test:unit packages/yarnpkg-shell"
},
"publishConfig": {
"main": "./lib/index.js",
"bin": "./lib/cli.js",
"exports": {
".": "./lib/index.js",
"./cli": "./lib/cli.js",
"./package.json": "./package.json"
}
},
"files": [
"/lib/**/*"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/yarnpkg/berry.git",
"directory": "packages/yarnpkg-shell"
},
"engines": {
"node": ">=18.12.0"
},
"stableVersion": "4.0.2"
}