forked from zjy365/sealos-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.06 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "sealos-cli",
"version": "0.0.1",
"description": "Official CLI tool for Sealos Cloud - Manage devbox, applications, databases, and object storage",
"types": "dist/main.d.ts",
"type": "module",
"bin": "./dist/bin/cli.cjs",
"exports": {
".": {
"import": {
"types": "./dist/main.d.ts",
"default": "./dist/main.mjs"
},
"require": {
"types": "./dist/main.d.cts",
"default": "./dist/main.cjs"
},
"default": "./dist/main.mjs"
},
"./dist/*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.cjs"
}
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "npm@8.4.0",
"files": [
"dist",
"src",
"bin"
],
"scripts": {
"start": "node --import tsx src/bin/cli.ts",
"build": "tsc && tsup",
"lint": "eslint . && npm run lint:lockfile && npm run lint:markdown",
"lint:markdown": "npx -y markdownlint-cli@0.45.0 -c .github/.markdownlint.yml -i '.git' -i '__tests__' -i '.github' -i '.changeset' -i 'CODE_OF_CONDUCT.md' -i 'CHANGELOG.md' -i 'docs/**' -i 'node_modules' -i 'dist' '**/**.md' --fix",
"lint:fix": "eslint . --fix",
"lint:lockfile": "lockfile-lint --path package-lock.json --validate-https --allowed-hosts npm yarn",
"test": "c8 node --import tsx --test __tests__/**/*.test.ts",
"test:watch": "c8 node --import tsx --test --watch __tests__/**/*.test.ts",
"coverage:view": "open coverage/lcov-report/index.html",
"version": "changeset version",
"release": "changeset publish"
},
"author": {
"name": "zjy365",
"email": "3161362058@qq.com",
"url": "https://github.com/zjy365"
},
"publishConfig": {
"provenance": true,
"access": "public"
},
"license": "Apache-2.0",
"keywords": [
"sealos",
"cli",
"cloud",
"devbox",
"s3",
"database",
"kubernetes",
"deployment"
],
"homepage": "https://github.com/zjy365/sealos-cli.git",
"bugs": {
"url": "https://github.com/zjy365/sealos-cli.git/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/zjy365/sealos-cli.git.git"
},
"dependencies": {
"axios": "^1.4.0",
"chalk": "^5.2.0",
"commander": "^13.1.0",
"ora": "^8.2.0",
"table": "^6.8.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@types/node": "^20.14.10",
"c8": "^10.1.2",
"eslint": "^9.6.0",
"eslint-plugin-security": "^3.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"lockfile-lint": "^4.14.0",
"neostandard": "^0.11.0",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"tsx": "^4.19.4",
"typescript": "^5.5.3",
"validate-conventional-commit": "^1.0.4"
},
"lint-staged": {
"**/*.{js,json}": [
"npm run lint:fix"
]
},
"c8": {
"exclude": [
"dist/**",
"coverage/**",
"__tests__/**",
"**/*.test.ts",
"**/*.test.js"
],
"include": [
"src/**"
],
"reporter": [
"text",
"lcov",
"html"
]
}
}