-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.77 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.77 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
64
65
66
{
"name": "mission-claw",
"version": "1.1.0",
"description": "CLI tool for logging agent activities with embedded dashboard",
"type": "module",
"bin": {
"mclaw": "./bin/mclaw.js"
},
"main": "src/index.js",
"files": [
"app",
"bin",
"src",
"prisma/schema.prisma",
"prisma/schema.postgresql.prisma",
"prisma/migrations",
"public",
"README.md",
"next.config.js",
".next"
],
"scripts": {
"dev": "node bin/mclaw.js",
"build": "npm run prisma:generate",
"prepublishOnly": "npm run dashboard:build && rm -rf .next/cache && npm run prisma:generate",
"postinstall": "npm run prisma:generate",
"prisma:generate": "prisma generate --schema=prisma/schema.prisma && prisma generate --schema=prisma/schema.postgresql.prisma",
"prisma:migrate:sqlite": "prisma migrate dev --schema=prisma/schema.prisma",
"prisma:migrate:pg": "prisma migrate dev --schema=prisma/schema.postgresql.prisma",
"dashboard": "next dev -p 3001",
"dashboard:build": "next build",
"dashboard:start": "next start -p 3001"
},
"keywords": [
"cli",
"activity",
"logging",
"dashboard"
],
"author": "William Tsang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tsangwailam/mcclaw.git"
},
"bugs": {
"url": "https://github.com/tsangwailam/mcclaw/issues"
},
"homepage": "https://github.com/tsangwailam/mcclaw#readme",
"dependencies": {
"@prisma/client": "^6.3.1",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"csv-stringify": "^6.6.0",
"next": "^14.2.21",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^3.7.0",
"ws": "^8.19.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"prisma": "^6.3.1"
}
}