-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.47 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
{
"name": "chengla-linux-unofficial",
"version": "1.0.8",
"description": "Unofficial chengla client for linux",
"author": "pokon548",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"knip": "knip",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives",
"preview": "vite preview"
},
"build": {
"appId": "ink.pokon548.chengla",
"productName": "chengla",
"linux": {
"maintainer": "pokon548",
"icon": "icon.png",
"category": "Education",
"target": [
{
"target": "AppImage"
},
{
"target": "Snap"
},
{
"target": "deb"
},
{
"target": "rpm"
},
{
"target": "zip"
}
],
"extraResources": [
{
"from": "./build/",
"to": "",
"filter": [
"**/*"
]
}
]
}
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitejs/plugin-react": "^4.1.0",
"electron-builder": "^24.6.4",
"eslint": "^8.50.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"knip": "^2.34.0",
"typescript": "^5.2.2",
"vite": "^4.5.2",
"vite-plugin-electron": "^0.14.1",
"vite-plugin-electron-renderer": "^0.14.5"
},
"main": "dist-electron/main.js"
}