-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.85 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.85 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
{
"name": "aiscrum-pro",
"version": "0.3.0",
"description": "ACP-powered autonomous sprint engine for GitHub Copilot CLI",
"type": "module",
"main": "dist/index.js",
"bin": {
"aiscrum": "dist/index.js"
},
"scripts": {
"build": "tsc && cd src/dashboard/frontend && npm run build",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck && npm run test",
"gate": "npm run format:check && npm run lint && npm run typecheck && npm run test && npm run build",
"prepare": "test -d .git && ./scripts/setup-hooks.sh || true"
},
"keywords": [
"copilot",
"acp",
"scrum",
"aiscrum-pro",
"ai-agent"
],
"license": "MIT",
"author": "trsdn",
"homepage": "https://github.com/trsdn/aiscrum-pro",
"repository": {
"type": "git",
"url": "https://github.com/trsdn/aiscrum-pro.git"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.14.0",
"commander": "^12.0.0",
"glob": "^11.0.0",
"p-limit": "^6.0.0",
"pino": "^9.0.0",
"pino-pretty": "^11.0.0",
"ws": "^8.19.0",
"yaml": "^2.4.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.58.2",
"@types/node": "^20.0.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^9.0.0",
"prettier": "^3.3.0",
"tsx": "^4.0.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.0"
}
}