-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.4 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.4 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
55
56
57
58
59
60
61
62
63
{
"name": "@rickywo/formic",
"version": "0.8.0",
"description": "Local-first agent orchestration and execution environment for AI coding tasks",
"type": "module",
"main": "dist/server/index.js",
"bin": {
"formic": "./dist/cli/index.js"
},
"files": [
"dist/",
"src/client/",
"skills/",
"templates/",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx watch src/server/index.ts",
"build": "tsc && chmod +x dist/cli/index.js",
"start": "node dist/server/index.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"build:demo": "node scripts/build-demo.js"
},
"keywords": [
"ai",
"agent",
"task-manager",
"claude",
"copilot",
"automation",
"orchestration",
"kanban",
"workflow"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rickywo/Formic.git"
},
"homepage": "https://github.com/rickywo/Formic#readme",
"bugs": {
"url": "https://github.com/rickywo/Formic/issues"
},
"dependencies": {
"@fastify/static": "^7.0.0",
"@fastify/websocket": "^9.0.0",
"fastify": "^4.26.0",
"framer-motion": "^12.35.1"
},
"devDependencies": {
"@playwright/test": "^1.58.0",
"@types/node": "^20.11.0",
"@types/ws": "^8.18.1",
"tsx": "^4.7.0",
"typescript": "^5.5.3"
},
"engines": {
"node": ">=20.0.0"
}
}