-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.61 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.61 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "lite-sqlearner",
"private": true,
"version": "0.2.0",
"description": "An interactive, gamified SQL learning desktop application",
"author": "Lite-SQLearner Team",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"dev:electron": "concurrently -k \"vite\" \"tsc -p tsconfig.electron.json -w\" \"wait-on http://localhost:5173 && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron .\"",
"build": "vite build && tsc -p tsconfig.electron.json",
"icon:generate": "node scripts/generate-icons.mjs",
"electron:pack": "yarn icon:generate && yarn build && electron-builder",
"preview": "vite preview"
},
"build": {
"appId": "com.lite.sqlearner",
"productName": "Lite-SQLearner",
"executableName": "Lite-SQLearner",
"directories": {
"output": "release",
"buildResources": "build"
},
"asar": true,
"asarUnpack": [
"**/*.wasm"
],
"compression": "maximum",
"npmRebuild": false,
"buildDependenciesFromSource": false,
"removePackageScripts": true,
"electronLanguages": [
"en-US",
"zh-CN"
],
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json",
"!**/*.map",
"!**/CHANGELOG*",
"!**/{test,tests,__tests__,example,examples}/**",
"!**/{README,README.*,readme,readme.*}"
],
"win": {
"target": [
"nsis"
],
"artifactName": "${productName}-${version}-Setup-${arch}.${ext}",
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"include": "build/installer.nsh",
"multiLanguageInstaller": true,
"installerLanguages": [
"en_US",
"zh_CN"
],
"perMachine": false,
"allowElevation": true,
"createDesktopShortcut": "always",
"createStartMenuShortcut": true,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"installerHeaderIcon": "build/icon.ico"
},
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Development",
"icon": "build/icons"
}
},
"dependencies": {
"@anthropic-ai/sdk": "^0.73.0",
"@bytemd/plugin-gfm": "^1.21.0",
"@bytemd/plugin-highlight": "^1.21.0",
"@bytemd/vue-next": "^1.21.0",
"@google/generative-ai": "^0.24.1",
"ant-design-vue": "^3.2.11",
"github-markdown-css": "^5.2.0",
"lodash": "^4.17.21",
"monaco-editor": "^0.34.0",
"openai": "^6.18.0",
"pinia": "^2.0.19",
"pinia-plugin-persistedstate": "^2.1.1",
"sql-formatter": "^9.2.0",
"sql.js": "^1.7.0",
"vue": "^3.2.37",
"vue-router": "4"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/sql.js": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@vitejs/plugin-vue": "^6.0.4",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^31.0.2",
"electron-builder": "^24.13.3",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.7.1",
"icon-gen": "^5.0.0",
"prettier": "^2.7.1",
"sharp": "^0.34.5",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vue-tsc": "^3.2.5",
"wait-on": "^7.2.0"
}
}