forked from sedwards2009/nodegui-simple-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.04 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
{
"name": "nodegui-simple-starter-js",
"version": "1.0.0",
"description": "A NodeGui starter project",
"scripts": {
"build": "webpack --mode production",
"start": "webpack && qode ./dist/index.js",
"clean": "node -e \"const fs=require('fs');['dist','tmp-jam-pack-nodegui'].forEach(path=>{if(fs.existsSync(path))fs.rmSync(path,{recursive:true});});\"",
"package": "jam-pack-nodegui --config packaging/jam-pack-nodegui.json",
"run": "qode ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scanline/nodegui-simple-starter-js.git"
},
"keywords": [
"nodegui"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/scanline/nodegui-simple-starter-js/issues"
},
"homepage": "https://github.com/scanline/nodegui-simple-starter-js#readme",
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"file-loader": "^6.2.0",
"jam-pack-nodegui": "^0.18.0",
"native-addon-loader": "^2.0.1",
"webpack": "^5.92.1",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@nodegui/nodegui": "^0.67.0"
}
}