-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.63 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.63 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
{
"name": "v-streaming",
"version": "1.16.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"lint": "eslint . --ext .ts,.tsx -c .eslintrc.json",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write "src/**/*.{ts,tsx,json,css,md}"",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@tauri-apps/plugin-shell": "^2.0.0",
"@types/events": "^3.0.3",
"eventemitter3": "^5.0.4",
"events": "^3.3.0",
"i18next": "^25.8.14",
"i18next-browser-languagedetector": "^8.2.1",
"obs-websocket-js": "^5.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^16.5.4"
},
"devDependencies": {
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/cli": "^2.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^4.0.3",
"@vitest/coverage-v8": "^1.0.0",
"@vitest/ui": "^1.0.0",
"chart.js": "^4.5.1",
"eslint": "^8.50.0",
"eslint-plugin-react": "^7.33.2",
"jsdom": "^28.1.0",
"prettier": "^3.0.3",
"react-chartjs-2": "^5.3.1",
"typescript": "^5.0.2",
"vite": "^4.4.4",
"vitest": "^1.0.0"
}
}