nodeguy/package.json

34 lines
966 B
JSON

{
"name": "@nodegui/nodegui",
"version": "1.0.0",
"description": "A cross platform library to build native desktop apps. Based on Qt5.",
"main": "dist/",
"author": "Atul R <atulanand94@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@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",
"demo": "tsc && qode dist/examples/calculator/index.js"
},
"dependencies": {
"bindings": "^1.5.0",
"napi-thread-safe-callback": "^0.0.6",
"node-addon-api": "^1.6.3"
},
"gypfile": true
}