-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.48 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
{
"name": "@foothill/agent-move",
"version": "1.0.12",
"description": "Watch your AI coding agents come alive as pixel-art characters in a 2D world",
"type": "module",
"engines": {
"node": ">=18"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FoothillSolutions/agent-move"
},
"bin": {
"agent-move": "bin/cli.js"
},
"files": [
"bin/",
".github/screenshot.png",
"packages/shared/dist/",
"packages/shared/package.json",
"packages/server/dist/",
"packages/server/package.json",
"packages/client/dist/",
"packages/client/package.json"
],
"workspaces": [
"packages/shared",
"packages/server",
"packages/client"
],
"scripts": {
"dev": "npm run build -w @agent-move/shared && concurrently -n server,client -c blue,green \"npm run dev -w @agent-move/server\" \"npm run dev -w @agent-move/client\"",
"build": "npm run build -w @agent-move/shared && npm run build -w @agent-move/server && npm run build -w @agent-move/client",
"typecheck": "tsc -b",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@fastify/cors": "^10.0.2",
"@fastify/static": "^8.1.0",
"@fastify/websocket": "^11.0.2",
"better-sqlite3": "^12.6.2",
"chokidar": "^3.6.0",
"fastify": "^5.2.1"
},
"devDependencies": {
"concurrently": "^9.1.2",
"esbuild": "^0.27.3",
"typescript": "^5.7.3"
},
"optionalDependencies": {
"@rollup/rollup-win32-x64-msvc": "^4.59.0"
}
}