36 lines
948 B
JSON
36 lines
948 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.7",
|
|
"@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": {
|
|
"build": "npm run build:addon && npm run build:lib",
|
|
"build:lib": "tsc",
|
|
"build:addon": "node-gyp -j 8 build",
|
|
"rebuild:addon": "node-gyp -j 8 rebuild",
|
|
"clean": "rm -rf ./dist ./build",
|
|
"automoc": "node ./scripts/automoc.js",
|
|
"dev": "tsc && qode dist/demo.js"
|
|
},
|
|
"dependencies": {
|
|
"bindings": "^1.5.0",
|
|
"node-addon-api": "^1.6.3"
|
|
},
|
|
"gypfile": true
|
|
}
|