-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "valorant-chat-client",
"version": "1.0.8",
"description": "VALORANT Chat Client",
"author": {
"name": "Jonathan Loh",
"email": "[email protected]",
"url": "https://jloh02.github.io/"
},
"license": "MIT",
"private": false,
"main": "dist/main/index.cjs",
"scripts": {
"dev": "node scripts/watch.mjs",
"prebuild": "vue-tsc --noEmit --p packages/renderer/tsconfig.json && node scripts/build.mjs",
"build": "electron-builder",
"init": "git config core.hooksPath .git/hooks/ && rm -rf .git/hooks && npx simple-git-hooks",
"test:e2e": "npx playwright test",
"test:e2e:headless": "npx playwright test --headed"
},
"engines": {
"node": ">=14.17.0"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@types/ws": "^8.5.3",
"@vitejs/plugin-vue": "^2.3.2",
"autoprefixer": "^10.4.7",
"electron": "18.2.0",
"electron-builder": "^23.0.3",
"sass": "^1.51.0",
"typescript": "^4.0.3",
"vite": "^2.9.8",
"vite-plugin-electron": "^0.4.3",
"vite-plugin-resolve": "^2.0.8",
"vue-tsc": "^0.34.11"
},
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 3344
},
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue"
],
"dependencies": {
"axios": "^0.27.2",
"electron-log": "^4.4.7",
"electron-updater": "4.6.5",
"postcss": "^8.1.0",
"regedit": "^5.1.1",
"vue": "^3.2.35",
"vuex": "^4.0.2",
"ws": "^8.6.0"
}
}