-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.56 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.56 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
{
"name": "visorium",
"version": "0.1.10",
"type": "module",
"license": "GPL-3.0",
"bin": {
"visorium": "./bin/cli.js"
},
"files": [
"bin",
"vite.config.ts",
"lib",
"dist"
],
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "NODE_ENV=production tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"start": "NODE_ENV=production node lib/cli/index.js"
},
"dependencies": {
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"commander": "^13.1.0",
"express": "^5.1.0",
"immer": "^10.1.1",
"masonic": "^4.0.1",
"react-error-boundary": "^5.0.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"time-chainer": "^0.1.1",
"vite": "npm:rolldown-vite@^6.3.1",
"vite-express": "^0.20.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/express": "^5.0.1",
"@types/node": "^22.14.1",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.21.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "~5.7.3",
"typescript-eslint": "^8.24.1",
"vite-plugin-top-level-await": "^1.5.0"
},
"optionalDependencies": {
"@ffprobe-installer/ffprobe": "^2.1.2",
"sharp": "^0.34.1",
"ffprobe-client": "^1.1.6"
},
"pnpm": {
"overrides": {
"vite": "npm:rolldown-vite@^6.3.1"
}
}
}