-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.5 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "agent-render",
"version": "0.1.0",
"private": true,
"description": "A static, zero-retention artifact viewer for markdown, code, diffs, CSV, and JSON.",
"license": "MIT",
"homepage": "https://agent-render.com",
"repository": {
"type": "git",
"url": "git+https://github.com/baanish/agent-render.git"
},
"bugs": {
"url": "https://github.com/baanish/agent-render/issues"
},
"keywords": [
"artifact-viewer",
"markdown",
"diff",
"static-site",
"zero-retention",
"openclaw",
"nextjs"
],
"scripts": {
"dev": "next dev",
"build": "node scripts/clean-build-output.mjs && next build",
"preview": "node scripts/serve-export.mjs",
"start": "npm run preview",
"lint": "eslint . && npm run check:public-export-docs",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "env -u NO_COLOR playwright test",
"test:e2e:update": "env -u NO_COLOR playwright test --update-snapshots",
"test:ci": "npm run lint && npm run test && npm run typecheck && npm run test:e2e && npm run check:build-budgets",
"test:browsers": "playwright install chromium webkit",
"bench:codecs": "node scripts/bench-codecs.mjs",
"bench:codecs:update": "node scripts/bench-codecs.mjs --write-baseline",
"assets:compress": "node scripts/compress-dictionary.mjs",
"typecheck": "node scripts/ensure-next-types.mjs && tsc --noEmit",
"check": "npm run lint && npm run test && npm run bench:codecs && npm run typecheck && npm run build && npm run check:build-budgets",
"check:build-budgets": "node scripts/check-build-budgets.mjs",
"check:public-export-docs": "node scripts/check-public-export-docs.mjs",
"selfhosted:dev": "node --import tsx selfhosted/server.ts",
"selfhosted:build": "tsc -p selfhosted/tsconfig.json",
"selfhosted:start": "node selfhosted/dist/server.js",
"selfhosted:csp-smoke": "node scripts/csp-smoke.mjs"
},
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.12.4",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.38.2",
"@git-diff-view/react": "^0.1.6",
"@replit/codemirror-indentation-markers": "^6.5.3",
"brotli-wasm": "^3.0.1",
"fflate": "^0.8.2",
"lucide-react": "^1.26.0",
"lz-string": "^1.5.0",
"mermaid": "^11.16.0",
"next": "15.5.18",
"papaparse": "^5.5.4",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-markdown": "^10.1.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@playwright/test": "^1.61.0",
"@tailwindcss/postcss": "^4.0.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^26.0.0",
"@types/papaparse": "^5.3.16",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"esbuild": "^0.27.3",
"eslint": "^9.22.0",
"eslint-config-next": "15.5.18",
"jsdom": "^28.1.0",
"tailwindcss": "^4.0.6",
"tsx": "^4.22.4",
"typescript": "^5.8.2",
"vitest": "^4.1.9"
},
"optionalDependencies": {
"better-sqlite3": "^12.8.0"
},
"overrides": {
"next": {
"postcss": "8.5.14"
}
},
"engines": {
"node": ">=20.10.0"
}
}