-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.09 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.09 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
{
"name": "monitor-forge",
"version": "0.5.0",
"description": "Create your own real-time intelligence dashboard. A meta-level template for building customized worldmonitor-style dashboards.",
"type": "module",
"license": "MIT",
"author": "Yunsung Lee",
"homepage": "https://github.com/alohays/monitor-forge",
"repository": {
"type": "git",
"url": "https://github.com/alohays/monitor-forge.git"
},
"bugs": {
"url": "https://github.com/alohays/monitor-forge/issues"
},
"keywords": [
"dashboard",
"real-time",
"intelligence",
"monitoring",
"ai-agent",
"agent-native",
"claude-code",
"maplibre",
"deckgl",
"cli",
"template",
"rss",
"vercel",
"typescript"
],
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"forge": "tsx forge/bin/forge.ts",
"dev": "tsx forge/bin/forge.ts dev",
"build": "tsx forge/bin/forge.ts build",
"deploy": "tsx forge/bin/forge.ts deploy",
"validate": "tsx forge/bin/forge.ts validate",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "npx playwright test --config e2e/playwright.config.ts",
"prepare": "git config core.hooksPath .githooks && (tsx forge/bin/forge.ts build --skip-vite --format json || true)"
},
"dependencies": {
"@deck.gl/core": "^9.2.11",
"@deck.gl/geo-layers": "^9.2.11",
"@deck.gl/layers": "^9.2.11",
"@loaders.gl/core": "^4.3.0",
"d3": "^7.9.0",
"dompurify": "^3.3.3",
"fast-xml-parser": "^5.5.9",
"maplibre-gl": "^5.21.1",
"marked": "^17.0.5"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/d3": "^7.4.0",
"@types/dompurify": "^3.0.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.2",
"commander": "^13.0.0",
"happy-dom": "^20.8.9",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^4.0.18",
"zod": "^3.24.0",
"zod-to-json-schema": "^3.25.2"
}
}