-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 800 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 800 Bytes
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
{
"name": "claude-code-setup",
"version": "1.0.0",
"description": "Claude Code session protocols and setup utilities",
"scripts": {
"test": "vitest run",
"test:watch": "vitest --watch",
"ci": "vitest run && npm run lint && npm run typecheck",
"lint": "eslint . --ext .js,.ts,.tsx",
"typecheck": "tsc --noEmit",
"dev": "echo 'Add your dev command here'",
"dev:all": "concurrently \"npm run dev\" \"npm run test:watch\""
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"concurrently": "^8.0.0",
"eslint": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"keywords": ["claude", "session", "protocol", "development"],
"license": "MIT"
}