forked from ProjectYinlan/yinlan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.99 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
{
"name": "haoran",
"version": "2026-0.1",
"description": "",
"scripts": {
"dev": "concurrently \"pnpm templates:dev\" \"pnpm dev:bot\"",
"dev:with-chrome": "concurrently \"pnpm templates:dev\" \"cross-env TEMPLATE_HEADLESS=false pnpm dev:bot\"",
"dev:bot": "cross-env LOG_LEVEL=debug TEMPLATE_DEV_SERVER_URL=http://localhost:39993 TEMPLATE_KEEP_OPEN=true tsx watch src/index.ts",
"start": "tsx src/index.ts",
"start:win": "chcp 65001 && tsx src/index.ts",
"build": "pnpm templates:build && tsc && node scripts/copy-docs.mjs",
"prod": "node dist/index.js",
"prod:win": "chcp 65001 && node dist/index.js",
"clean": "rm -rf dist",
"typeorm": "typeorm-ts-node-commonjs",
"templates:dev": "vite --config vite.config.ts",
"templates:preview": "vite preview --config vite.config.ts",
"templates:build": "tailwindcss -i src/template-preview/styles.css -o assets/tailwind.css --minify"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"classnames": "^2.5.1",
"cron": "^4.4.0",
"dayjs": "^1.11.19",
"js-yaml": "^4.1.1",
"lodash-es": "^4.17.23",
"lucide-react": "^0.563.0",
"monaco-editor": "^0.52.2",
"node-napcat-ts": "^0.4.20",
"openai": "^4.104.0",
"pg": "^8.18.0",
"pino": "^9.14.0",
"pino-pretty": "^13.1.3",
"playwright": "^1.58.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.28",
"zod": "^3.25.76"
},
"type": "module",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.19.7",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.24",
"concurrently": "^9.2.1",
"cross-env": "^7.0.3",
"dotenv": "^17.2.4",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^6.4.1"
}
}