-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "launchui-packager-gui",
"version": "0.1.2",
"description": "GUI front-end for LaunchUI Packager",
"main": "dist/main.js",
"scripts": {
"build": "webpack --config build/webpack.config.js --env.production",
"build:dev": "webpack --config build/webpack.config.js",
"watch": "webpack --config build/webpack.config.js --watch",
"start": "node ./dist/main.min.js",
"start:dev": "node ./dist/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mimecorg/launchui-packager-gui.git"
},
"keywords": [
"node",
"libui",
"packager",
"desktop"
],
"author": "Michał Męciński",
"license": "MIT",
"bugs": {
"url": "https://github.com/mimecorg/launchui-packager-gui/issues"
},
"homepage": "https://github.com/mimecorg/launchui-packager-gui",
"dependencies": {
"launchui-packager": "^0.1.1",
"vuido": "^0.2.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"vue-loader": "^15.4.0",
"vue-template-compiler": "^2.5.17",
"vuido-template-compiler": "^0.2.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
}
}