-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1013 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1013 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
26
27
28
29
30
31
32
33
34
{
"name": "nativeapptemplate-agent",
"version": "1.0.0",
"description": "A Claude Code agent that turns a natural-language SaaS spec into a working three-platform implementation (Rails API + SwiftUI iOS + Jetpack Compose Android).",
"type": "module",
"main": "dist/index.js",
"bin": {
"nativeapptemplate-agent": "dist/index.js"
},
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"typecheck:tests": "tsc --noEmit -p tsconfig.test.json",
"test": "NATEMPLATE_STUB_ALL=1 node --import tsx --test tests/smoke.test.ts",
"ci": "npm run build && npm run typecheck:tests && npm test",
"cost": "bash scripts/cost.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^25.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.114",
"@anthropic-ai/sdk": "^0.90.0"
}
}