forked from CopyTranslator/CopyTranslator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.37 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
{
"name": "copytranslator",
"version": "0.0.8",
"private": true,
"description": "Foreign language assisted reading and translation solution",
"author": {
"name": "Elliott Zheng",
"email": "[email protected]",
"url": "https://hypercube.top"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build": "npm run prebuild && vue-cli-service electron:build",
"electron:serve": "npm run prebuild && vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"rebuild": "npm rebuild --runtime=electron --target=3.0.0 --disturl=https://atom.io/download/atom-shell --abi=64",
"prebuild": "tsc ./src/prebuild.ts && node ./src/prebuild.js && npm run clean",
"clean": "node clean.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "sh docs/.vuepress/release/sync.sh deploy"
},
"dependencies": {
"electron-clipboard-extended": "^1.1.1",
"element-ui": "^2.5.4",
"iohook": "^0.3.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.11",
"log4js": "^4.0.1",
"md5": "^2.2.1",
"robotjs": "^0.5.1",
"translation.js": "^0.7.5",
"vue": "^2.5.21",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@types/lodash": "^4.14.123",
"@types/md5": "^2.1.33",
"@types/node": "^11.11.0",
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-eslint": "^3.2.0",
"@vue/cli-plugin-typescript": "^3.3.0",
"@vue/cli-service": "^3.5.3",
"@vue/eslint-config-prettier": "^4.0.1",
"@vue/eslint-config-typescript": "^3.2.0",
"babel-eslint": "^10.0.1",
"electron": "^3.0.0",
"eslint": "^5.8.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-vue": "^5.0.0",
"leancloud-storage": "^3.12.0",
"node-gyp": "^3.8.0",
"typescript": "^3.3.3333",
"typescript-eslint-parser": "^22.0.0",
"valine": "^1.3.4",
"vue-cli-plugin-electron-builder": "^1.1.3",
"vue-template-compiler": "^2.5.21"
},
"cmake-js": {
"runtime": "electron",
"runtimeVersion": "^3.0.0"
},
"iohook": {
"targets": [
"node-64",
"electron-64"
],
"platforms": [
"win32",
"darwin",
"linux"
],
"arches": [
"ia32",
"x64"
]
},
"main": "background.js"
}