-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.36 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "grok-ui",
"version": "0.12.1",
"description": "A local-first command center and live dashboard for Grok Build.",
"license": "MIT",
"author": "Grok UI contributors",
"keywords": [
"grok",
"grok-build",
"dashboard",
"agent",
"cli",
"local-first"
],
"homepage": "https://github.com/joeynyc/Grok-UI#readme",
"bugs": {
"url": "https://github.com/joeynyc/Grok-UI/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joeynyc/Grok-UI.git"
},
"bin": {
"grok-ui": "bin/grok-ui.mjs"
},
"files": [
"bin/",
"dist/",
"dist-server/",
"scripts/doctor.mjs",
"CHANGELOG.md",
"LICENSE",
"README.md",
"SECURITY.md"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=22"
},
"type": "module",
"scripts": {
"dev": "concurrently -k -n api,ui -c green,cyan \"tsx watch server/index.ts\" \"vite\"",
"build": "tsc -b && vite build && tsc -p tsconfig.server.json",
"start": "node scripts/start.mjs",
"agent": "node dist-server/host-agent-entry.js",
"serve": "node dist-server/index.js",
"doctor": "node scripts/doctor.mjs",
"setup": "npm run doctor && npm run build",
"check": "tsc -b --pretty false && tsc -p tsconfig.server.json --pretty false",
"test": "vitest run",
"test:e2e": "npm run build && playwright test",
"test:e2e:report": "playwright show-report",
"test:package": "node scripts/package-smoke.mjs",
"test:soak": "npm run build && node scripts/control-soak.mjs",
"release:check": "node scripts/release-check.mjs",
"verify": "npm run check && npm test && npm run build && npm run release:check",
"prepare": "npm run build",
"prepack": "npm run verify"
},
"dependencies": {
"@agentclientprotocol/sdk": "^1.3.0",
"@fontsource-variable/syne": "^5.3.0",
"@fontsource/ibm-plex-mono": "^5.3.0",
"express": "^5.2.1",
"lucide-react": "^1.26.0",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@playwright/test": "^1.62.0",
"@types/express": "^5.0.6",
"@types/node": "^26.1.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.4",
"concurrently": "^10.0.4",
"tsx": "^4.20.0",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vitest": "^5.0.0"
}
}