forked from kahme247/ompweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.13 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
{
"name": "@kahme247/ompweb",
"version": "0.3.6",
"description": "Web UI for the oh-my-pi (omp) coding agent",
"homepage": "https://github.com/kahme247/ompweb#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kahme247/ompweb.git"
},
"bugs": {
"url": "https://github.com/kahme247/ompweb/issues"
},
"license": "MIT",
"engines": {
"node": ">=22.19.0"
},
"bin": {
"ompweb": "bin/omp-web.js"
},
"files": [
"bin",
".next",
"!.next/cache",
"!.next/dev",
"!.next/diagnostics",
"!.next/types",
"!.next/trace",
"!.next/trace-build",
"!.next/**/*.map",
"public",
"next.config.ts",
"package.json"
],
"scripts": {
"dev": "next dev -H 127.0.0.1 -p 30178",
"dev:lan": "next dev -H 0.0.0.0 -p 30178",
"build": "next build --webpack",
"start": "next start -H 127.0.0.1 -p 30177",
"start:lan": "next start -H 0.0.0.0 -p 30177",
"test": "node --experimental-strip-types --test lib/*.test.mjs lib/omp/*.test.mjs components/*.test.mjs components/ui/*.test.mjs hooks/*.test.mjs bin/*.test.mjs",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"prepack": "npm run build",
"release:check": "npm run typecheck && npm run lint && npm test && npm run build"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"cmdk": "^1.1.1",
"lucide-react": "^1.27.0",
"next": "16.3.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-syntax-highlighter": "^16.1.1",
"undici": "8.10.0",
"yaml": "^2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "^9",
"eslint-config-next": "16.3.0",
"jiti": "^2.7.0",
"katex": "^0.16.47",
"mammoth": "^1.12.0",
"mermaid": "^11.14.0",
"postcss": "^8",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tailwindcss": "^4.2.2",
"typescript": "^5"
}
}