-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.24 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.24 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "stream-link-pro",
"private": true,
"version": "0.1.0",
"author": {
"name": "decryptable",
"email": "contact@decryptable.dev",
"url": "https://decryptable.dev"
},
"homepage": "https://github.com/decryptable",
"license": "See License in App",
"description": "Professional Streaming Tool for TikTok Live Interaction",
"type": "module",
"main": "dist-electron/electron/main.js",
"build": {
"appId": "com.decryptable.streamlinkpro",
"productName": "StreamLink Pro",
"directories": {
"output": "dist",
"buildResources": "resources"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"publish": {
"provider": "github",
"releaseType": "prerelease"
},
"win": {
"target": "nsis",
"icon": "resources/icon.png"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
}
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"icon": "resources/icon.png",
"lint": "eslint .",
"preview": "vite preview",
"build:electron": "tsc -p electron/tsconfig.json && node -e \"require('fs').writeFileSync('dist-electron/package.json', '{\\\"type\\\": \\\"commonjs\\\"}')\"",
"electron:dev": "npm run build:electron && concurrently -k \"cross-env BROWSER=none npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "npm run build && npm run build:electron && electron-builder",
"test": "vitest"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-squirrel-startup": "^1.0.1",
"electron-store": "^11.0.2",
"express": "^5.2.1",
"i18next": "^25.8.4",
"i18next-browser-languagedetector": "^8.2.0",
"lucide-react": "^0.563.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.5.4",
"robotjs": "^0.6.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"sound-play": "^1.1.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"tiktok-live-connector": "^2.1.1-beta1",
"wait-on": "^9.0.3",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/express": "^5.0.6",
"@types/node": "^24.10.12",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.24",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^40.2.1",
"electron-builder": "^26.7.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"happy-dom": "^20.6.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^5.4.11",
"vitest": "^4.0.18"
}
}