-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.61 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
{
"name": "@hagicode/cli",
"version": "0.1.0",
"description": "HagiCode CLI for project, proposal, chat, and AutoTask management.",
"homepage": "https://github.com/HagiCode-org/cli#readme",
"bugs": {
"url": "https://github.com/HagiCode-org/cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HagiCode-org/cli.git"
},
"bin": {
"hagi": "dist/cli.js"
},
"main": "./dist/main.js",
"files": [
"dist",
"README.md"
],
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=20"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && vite build",
"dev": "tsx ./src/cli.ts",
"generate:api": "node ./buildTools/generate-api.cjs",
"generate:api:once": "node ./buildTools/generate-api-once.cjs",
"pack:check": "node ./scripts/verify-package.mjs",
"publish:resolve-dev-version": "node ./scripts/resolve-dev-version.mjs",
"publish:verify-release": "node ./scripts/verify-release-version.mjs",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"keywords": [
"hagicode",
"cli",
"openspec",
"proposal"
],
"author": "HagiCode",
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"commander": "^14.0.2"
},
"devDependencies": {
"@types/node": "^25.0.2",
"openapi-typescript-codegen": "^0.29.0",
"rimraf": "^6.1.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^8.0.3",
"vitest": "^4.1.1"
}
}