-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.42 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "streamflow",
"description": "Workflows for streamers",
"version": "0.1.0",
"private": false,
"author": {
"name": "Danilo Polani",
"email": "theraloss@streamflow.app",
"url": "https://theraloss.com"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"start": "npm run watch",
"build": "npm run build:main && npm run build:preload && npm run build:renderer",
"build:main": "cd ./packages/main && vite build",
"build:preload": "cd ./packages/preload && vite build",
"build:renderer": "cd ./packages/renderer && vite build",
"compile": "cross-env MODE=production npm run build && electron-builder build --config .electron-builder.config.js --dir --config.asar=false",
"compile:prod": "cross-env MODE=production npm run build && electron-builder build --config .electron-builder.config.js",
"test": "npm run test:main && npm run test:preload && npm run test:renderer",
"test:main": "vitest run -r packages/main --passWithNoTests",
"test:preload": "vitest run -r packages/preload --passWithNoTests",
"test:renderer": "vitest run -r packages/renderer --passWithNoTests",
"watch": "node scripts/watch.mjs",
"lint": "eslint . --ext js,mjs,cjs,ts,mts,cts,vue",
"lint:fix": "eslint . --ext js,mjs,cjs,ts,mts,cts,vue --cache --fix",
"typecheck:main": "tsc --noEmit -p packages/main/tsconfig.json",
"typecheck:preload": "tsc --noEmit -p packages/preload/tsconfig.json",
"typecheck:renderer": "vue-tsc --noEmit -p packages/renderer/tsconfig.json",
"typecheck": "npm run typecheck:main && npm run typecheck:preload && npm run typecheck:renderer",
"postinstall": "cross-env ELECTRON_RUN_AS_NODE=1 electron scripts/update-electron-vendors.mjs && electron-builder install-app-deps",
"format": "npx prettier --write \"**/*.{js,mjs,cjs,ts,mts,cts,vue,json}\""
},
"devDependencies": {
"@types/node": "18.11.18",
"@types/splitpanes": "^2.2.1",
"@types/uniqid": "^5.3.2",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "^6.4.1",
"@vicons/fluent": "^0.12.0",
"@vicons/ionicons5": "^0.12.0",
"@vitejs/plugin-vue": "4.0.0",
"@vue/test-utils": "2.2.6",
"@vueuse/core": "^10.3.0",
"autoprefixer": "^10.4.13",
"cross-env": "7.0.3",
"electron": "^26.2.4",
"electron-builder": "24.6.3",
"eslint": "8.30.0",
"eslint-plugin-codegen": "^0.17.0",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-vue": "9.8.0",
"happy-dom": "8.1.1",
"naive-ui": "^2.34.3",
"nano-staged": "0.8.0",
"pinia": "^2.1.6",
"playwright": "1.29.1",
"postcss": "^8.4.20",
"sequelize-cli": "^6.5.2",
"simple-git-hooks": "2.8.1",
"splitpanes": "^3.1.5",
"tailwindcss": "^3.2.4",
"typescript": "4.9.4",
"unplugin-auto-expose": "0.0.4",
"vite": "4.4.8",
"vitest": "0.26.2",
"vue": "^3.3",
"vue-router": "^4.1.6",
"vue-tsc": "1.0.18"
},
"dependencies": {
"@nut-tree/nut-js": "^3.1",
"@sentry/electron": "^4.10.0",
"@sentry/vite-plugin": "^2.7.1",
"@twurple/api": "^7.0.1",
"@twurple/auth": "^7.0.1",
"@twurple/chat": "^7.0.1",
"@twurple/eventsub-ws": "^7.0.1",
"electron-log": "^5.0.0-beta.28",
"electron-updater": "6.1.1",
"lodash-es": "^4.17.21",
"obs-websocket-js": "^5.0.2",
"ps-list": "^8.1.1",
"quickjs-emscripten": "^0.23.0",
"sequelize": "^6.28.0",
"sqlite3": "^5.1.4",
"umzug": "^3.3.1"
}
}