-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 921 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 921 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
35
36
{
"name": "dom",
"version": "0.1.0",
"description": "Dom — autonomous coding agent that builds applications from natural language",
"type": "module",
"bin": {
"dom": "./dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"serve": "tsx src/server.ts",
"docker:build": "npm run build && docker build -t dom-sandbox -f Dockerfile.agent .",
"dev:local": "AGENT_SANDBOX=false tsx src/index.ts",
"test": "node --import tsx --test src/__tests__/*.test.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"ai",
"agent",
"fullstack",
"code-generation"
],
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.107",
"dotenv": "^17.4.2",
"kleur": "^4.1.5"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}