-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "dwords2",
"version": "0.2.3",
"description": "Show words as Danmaku on the screen to help you memorize them",
"author": "Luyu Huang",
"repository": "https://github.com/luyuhuang/DWords2.git",
"license": "MIT",
"main": "src/main.js",
"scripts": {
"lint": "eslint . --ext js,vue",
"start": "yarn build && electron .",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"pack": "yarn build && electron-builder --dir",
"dist": "yarn build && electron-builder --publish never"
},
"build": {
"appId": "tech.luyuhuang.dwords2",
"productName": "DWords",
"asar": false,
"mac": {
"category": "public.app-category.education"
},
"files": [
"!templates",
"!screenshots",
"!vue.config.js"
]
},
"devDependencies": {
"@popperjs/core": "^2.9.2",
"@vue/cli-plugin-router": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"bootstrap": "^5.0.2",
"bootstrap-icons": "^1.5.0",
"electron": "^13.6.0",
"electron-builder": "^22.11.7",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-vue": "^7.17.0",
"vue": "^2.6.14",
"vue-router": "^3.5.2",
"vue-template-compiler": "^2.6.14"
},
"dependencies": {
"auto-launch": "^5.0.5",
"got": "^9.6.0",
"sqlite": "^4.0.23",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2",
"webdav": "^4.6.0"
}
}