-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.37 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.37 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
{
"name": "kiitecafe-desktop",
"productName": "Kiite Cafe Desktop",
"private": true,
"version": "0.5.0",
"main": "dist/main.js",
"type": "module",
"packageManager": "pnpm@10.6.4",
"scripts": {
"dev": "vite",
"build": "run-s build:*",
"build:vite": "vite build",
"build:electron": "electron-builder --config electron-builder.config.cjs --publish never",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typecheck": "vue-tsc -b"
},
"dependencies": {
"@colors/colors": "^1.6.0",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/vue-fontawesome": "^3.1.2",
"@ossign/electronbuilder": "^1.0.1",
"bufferutil": "^4.1.0",
"conf": "^15.0.2",
"discord-rpc": "^4.0.1",
"electron-store": "^11.0.2",
"mime": "^4.1.0",
"node-fetch": "^3.3.2",
"sass": "^1.97.1",
"semver": "^7.7.3",
"urlcat": "^3.1.0",
"utf-8-validate": "^6.0.6",
"vue": "^3.5.26",
"vue-material-design-icons": "^5.3.1",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/d3": "^7.4.3",
"@types/discord-rpc": "^4.0.10",
"@types/semver": "^7.7.1",
"@typescript-eslint/parser": "^8.50.0",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/eslint-config-typescript": "^14.6.0",
"electron": "^39.2.7",
"electron-builder": "^26.0.12",
"eslint": "^9.39.2",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.6.2",
"jiti": "^2.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"tar": "^7.5.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0",
"vite": "^7.3.0",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-electron": "^0.29.0",
"vite-tsconfig-paths": "^6.0.3",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.2.0"
},
"pnpm": {
"overrides": {
"register-scheme": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.2.1.tgz"
},
"onlyBuiltDependencies": [
"electron"
],
"ignoredBuiltDependencies": [
"@parcel/watcher",
"bufferutil",
"esbuild",
"utf-8-validate"
]
}
}