-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.63 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
{
"name": "colorish",
"version": "1.2.0",
"private": true,
"synopsis": "The official manager for Project Colorway-compatible apps.",
"description": "The official manager for Project Colorway-compatible apps. Change, create and manage, all from one place.",
"main": "src/electron.cjs",
"type": "module",
"author": {
"name": "DaBluLite",
"email": "[email protected]"
},
"homepage": "https://github.com/ProjectColorway/colorish",
"repository": {
"url": "https://github.com/ProjectColorway/colorish"
},
"scripts": {
"dev": "cross-env NODE_ENV=production npm run dev:all",
"dev:all": "concurrently -n=svelte,electron -c='#ff3e00',blue \"npm run dev:svelte\" \"npm run dev:electron\"",
"dev:svelte": "vite dev",
"dev:electron": "electron src/electron.cjs",
"build": "cross-env NODE_ENV=production npm run build:svelte && npm run build:electron",
"build:svelte": "vite build",
"build:electron": "electron-builder -wl --config build.config.json",
"build:p": "cross-env NODE_ENV=production vite build && electron-builder -wl --config build.config.json -p onTagOrDraft"
},
"engines": {
"npm": ">=7",
"yarn": "use npm - https://github.com/FractalHQ/sveltekit-electron/issues/12#issuecomment-1068399385"
},
"browserslist": [
"Chrome 89"
],
"dependencies": {
"@auth/core": "^0.34.2",
"@auth/sveltekit": "^1.4.2",
"bootstrap-icons": "^1.11.3",
"cli-truncate": "^4.0.0",
"client": "link:@auth/sveltekit/client",
"discord": "link:@auth/sveltekit/providers/discord",
"electron-context-menu": "^3.6.1",
"electron-reloader": "^1.2.3",
"electron-serve": "^1.1.0",
"electron-window-state": "^5.0.3",
"jsonfile": "^6.1.0",
"mkdirp": "^3.0.1",
"shell": "^0.11.0",
"svelte-awesome-color-picker": "^3.1.2",
"universalify": "^2.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@electron/packager": "^18.3.3",
"@sveltejs/adapter-static": "2.0.1",
"@sveltejs/kit": "1.14.0",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"electron": "^23.3.13",
"electron-builder": "^23.6.0",
"electron-connect": "^0.6.3",
"electron-updater": "^5.3.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"sass": "^1.60.0",
"svelte": "^3.57.0",
"svelte-check": "^3.1.4",
"svelte-preprocess": "^5.0.3",
"ts-node": "^10.9.2",
"tslib": "^2.5.0",
"typescript": "^4.9.4",
"vite": "^4.0.4"
},
"overrides": {
"electron": {
"got": "^12.5.1"
}
}
}