-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 KB
/
package.json
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
{
"name": "gakuon",
"version": "0.4.8",
"module": "index.ts",
"type": "module",
"bin": {
"gakuon": "./dist/gakuon"
},
"scripts": {
"test:integration": "jest --config jest.integration.config.js",
"start": "bun run src/index.ts",
"dev": "bun run --hot src/index.ts serve",
"build": "bun build src/index.ts --target=node --outfile dist/gakuon",
"prepublishOnly": "rm -rf dist && bun run build && bun run build:client",
"fmt": "bunx biome format --write ./src",
"test": "jest",
"test:watch": "jest --watch",
"dev:client": "vite",
"build:client": "vite build",
"preview:client": "vite preview",
"lint": "biome lint ./src",
"lint:write": "biome lint --write ./src"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@phosphor-icons/react": "^2.1.7",
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/supertest": "^6.0.2",
"@vitejs/plugin-react": "^4.3.4",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"swr": "^2.3.0",
"tailwindcss": "^4.0.0",
"ts-jest": "^29.2.5",
"vite": "^6.0.11"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@lobehub/tts": "^1.28.0",
"@tailwindcss/vite": "^4.0.0",
"commander": "^13.1.0",
"cors": "^2.8.5",
"enquirer": "^2.4.1",
"express": "^4.21.2",
"openai": "^4.80.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.3",
"ws": "^8.18.0",
"zod": "^3.24.1"
},
"files": [
"dist",
"src"
],
"trustedDependencies": [
"@biomejs/biome"
]
}