-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.77 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
{
"name": "kickoff",
"version": "0.0.0",
"description": "AI-guided workflow for startup ideation and development",
"type": "module",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:all": "concurrently -n static,integration,e2e -c blue,green,magenta \"pnpm test\" \"pnpm test:integration\" \"pnpm test:e2e\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"validate:plugin": "claude plugin validate ./plugin",
"checks:base": "pnpm test && pnpm lint && pnpm format:check && pnpm typecheck",
"pre-commit": "pnpm checks:base && pnpm validate:plugin",
"ci:check": "pnpm checks:base && pnpm audit --audit-level moderate",
"prepare": "husky"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.42",
"@anthropic-ai/sdk": "^0.71.2",
"@eslint/js": "^9.39.2",
"@types/eslint__js": "^9.14.0",
"@types/node": "^22.10.2",
"concurrently": "^9.2.1",
"eslint": "9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.7",
"prettier": "^3.8.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^7.3.1",
"vitest": "^4.0.18",
"yaml": "^2.8.2"
},
"author": {
"name": "Lockstride",
"email": "hello@lockstride.ai",
"url": "https://lockstride.ai"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lockstride/kickoff"
},
"pnpm": {
"auditConfig": {
"ignoreGhsas": [
"GHSA-2g4f-4pwh-qvx6"
]
}
}
}