nodeguy/package.json

36 lines
956 B
JSON

{
"name": "@nodegui/nodegui",
"version": "1.0.0",
"description": "A cross platform library to build native desktop apps. Based on Qt5.",
"main": "dist/src/lib/index.js",
"files": [
"dist/src/lib"
],
"author": "Atul R <atulanand94@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@nodegui/test": "^0.0.9",
"@types/bindings": "^1.3.0",
"@types/lodash": "^4.14.130",
"@types/node": "^12.0.2",
"node-gyp": "^4.0.0",
"prettier": "^1.17.1",
"typescript": "^3.4.5"
},
"scripts": {
"dev": "npm run build && qode dist/demo.js",
"postinstall": "npm run build",
"build": "npm run build:lib && npm run build:addon",
"build:lib": "tsc",
"build:addon": "node-gyp -j 8 build",
"rebuild:addon": "node-gyp -j 8 rebuild",
"automoc": "node ./scripts/automoc.js"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^1.6.3"
},
"gypfile": true
}