-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "kc3kaini",
"productName": "KC3 Kai Ni",
"version": "0.1.0",
"description": "A platform for your browser-gaming needs",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"build": "electron-builder ./dist -c=./build/config/electron.build.json",
"dist": "yarn compile && yarn build",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KC3Kai/KC3KaiNi.git"
},
"author": "dragonjet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/KC3Kai/KC3KaiNi/issues"
},
"homepage": "https://kc3.moe",
"dependencies": {
"source-map-support": "^0.5.4"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.44",
"@babel/preset-env": "^7.0.0-beta.44",
"babel-loader": "^8.0.0-beta",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"electron": "^1.8.4",
"electron-builder": "^20.8.1",
"electron-webpack": "^2.0.1",
"electron-webpack-vue": "^2.1.0",
"node-sass": "^4.8.3",
"sass-loader": "^6.0.7",
"vue": "^2.5.16",
"vue-i18n": "^7.6.0",
"webpack": "^4.4.1"
},
"resolutions": {
"webpack-sources": "1.0.1"
},
"engines": {
"node": ">=8",
"npm": ">=5",
"yarn": "^1.5.1"
},
"electronWebpack": {
"title": "KC3 Kai Ni",
"whiteListedModules": [
"source-map-support"
],
"main": {
"sourceDirectory": "src/service",
"webpackConfig": "build/config/webpack.main.js"
},
"renderer": {
"sourceDirectory": "src/browser",
"webpackConfig": "build/config/webpack.renderer.js"
}
}
}