-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 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
{
"name": "@hagicode/skillsbase",
"version": "0.1.0",
"description": "Managed skills repository CLI",
"license": "MIT",
"homepage": "https://github.com/HagiCode-org/skillsbase#readme",
"bugs": {
"url": "https://github.com/HagiCode-org/skillsbase/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HagiCode-org/skillsbase.git"
},
"type": "module",
"packageManager": "npm@10.9.2",
"bin": {
"skillsbase": "./bin/skillsbase.mjs"
},
"files": [
"bin",
"dist",
"templates",
"README.md",
"README.zh-CN.md"
],
"scripts": {
"build": "vite build",
"clean": "rm -rf dist",
"cli": "node --import tsx ./src/cli-entry.ts",
"pack:check": "node ./scripts/verify-package.mjs",
"publish:resolve-dev-version": "node ./scripts/resolve-dev-version.mjs",
"publish:verify-readiness": "node ./scripts/verify-publish-readiness.mjs",
"publish:verify-release": "node ./scripts/verify-release-version.mjs",
"test": "node --import tsx --test ./tests/*.test.ts",
"smoke": "node --import tsx ./scripts/smoke.mjs",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"engines": {
"node": ">=22.12.0",
"npm": ">=10.9.2"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^8.0.0"
}
}