-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.29 KB
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
{
"private": true,
"name": "@straw-hat/cli-core",
"version": "0.10.3",
"description": "Straw Hat Team CLI",
"repository": {
"type": "git",
"url": "https://github.com/straw-hat-team/nodejs-monorepo.git",
"directory": "packages/@straw-hat/cli-core"
},
"keywords": [
"oclif",
"cli",
"straw-hat-team"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prebuild": "yarn run -T rimraf dist",
"experimental:build": "yarn prebuild && yarn run -T tsc -p tsconfig.prod.json",
"prepack": "yarn build",
"docs:typedoc": "yarn run -T typedoc"
},
"type": "commonjs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"dependencies": {
"@oclif/core": "3.27.0",
"@straw-hat/fancy-map": "4.0.0",
"chalk": "5.3.0",
"ci-info": "4.1.0",
"conf": "13.1.0",
"debug": "4.4.0",
"dotenv": "16.4.7",
"dotenv-expand": "12.0.1",
"ejs": "3.1.10",
"enquirer": "2.4.1",
"make-dir": "5.0.0",
"ora": "8.1.1",
"resolve": "1.22.8"
},
"devDependencies": {
"@straw-hat/tsconfig": "workspace:*",
"@types/debug": "^4.1.12",
"@types/ejs": "^3.1.5",
"@types/node": "^22.13.9",
"@types/resolve": "^1.20.6"
}
}