-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "agentcmd",
"version": "1.0.0",
"description": "A full-stack web application and TypeScript SDKs for orchestrating AI agent workflows with chat, file editing, and terminal capabilities",
"private": true,
"keywords": [
"ai",
"agent",
"workflow",
"claude",
"codex",
"automation",
"monorepo",
"turborepo",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/jnarowski/agentcmd"
},
"homepage": "https://agentcmd.dev",
"bugs": {
"url": "https://github.com/jnarowski/agentcmd/issues"
},
"author": "Sourceborn",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"dev:setup": "pnpm build && cd apps/app && pnpm dev:setup",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"check": "turbo run check",
"start": "pnpm --filter=agentcmd start"
},
"devDependencies": {
"@types/node": "^24.10.0",
"concurrently": "^8.2.2",
"prettier": "^3.6.2",
"turbo": "^2.6.3",
"typescript": "5.9.2"
},
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=20.6.0"
}
}