-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.58 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
{
"name": "codex-guide",
"version": "0.1.0",
"private": true,
"description": "CodexGuide:面向全球初学者、创作者、开发者与团队的 Codex 实践指南",
"type": "module",
"engines": {
"node": ">=22 <25"
},
"scripts": {
"admin:hash-password": "node scripts/hash-admin-password.mjs",
"alipay:configure-sandbox": "node scripts/configure-alipay-sandbox.mjs",
"alipay:sandbox": "pnpm build && tsc -p tsconfig.local-server.json && node scripts/serve-paid-community.mjs",
"dev": "vuepress dev docs --host 0.0.0.0",
"build": "vuepress build docs",
"clean": "rm -rf docs/.vuepress/.cache docs/.vuepress/.temp docs/.vuepress/dist",
"community:generate-entry-qr": "node scripts/generate-community-entry-qr.mjs",
"db:migrate": "node scripts/migrate-paid-community.mjs",
"preview": "vuepress dev docs --host 0.0.0.0",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.server.json --noEmit"
},
"dependencies": {
"@heroicons/vue": "2.2.0",
"@neondatabase/serverless": "^1.1.0",
"@vercel/analytics": "^2.0.1",
"alipay-sdk": "4.14.0",
"postgres": "3.4.9"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@types/qrcode": "^1.5.6",
"@vuepress/bundler-vite": "2.0.0-rc.28",
"@vuepress/plugin-feed": "2.0.0-rc.128",
"@vuepress/plugin-slimsearch": "2.0.0-rc.128",
"qrcode": "^1.5.4",
"sass-embedded": "^1.97.2",
"typescript": "5.9.3",
"vitest": "^4.1.10",
"vue": "^3.5.26",
"vuepress": "2.0.0-rc.28",
"vuepress-theme-hope": "2.0.0-rc.106"
},
"packageManager": "pnpm@10.33.0"
}