nodeguy/package.json
2019-09-08 22:29:06 +02:00

44 lines
1.1 KiB
JSON

{
"name": "@nodegui/nodegui",
"version": "0.1.8",
"description": "A cross platform library to build native desktop apps.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"config",
"binding.gyp",
"src",
"extras/legal",
"deps"
],
"author": "Atul R <atulanand94@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "npm run build && qode dist/demo.js",
"install": "npm -v",
"postinstall": "npm run build:addon",
"build": "tsc && npm run build:addon",
"build:addon": "node-gyp -j 8 configure build",
"rebuild:addon": "node-gyp -j 8 rebuild",
"automoc": "node ./scripts/automoc.js",
"docs": "serve docs"
},
"dependencies": {
"@nodegui/qode": "^1.0.4",
"cuid": "^2.1.6",
"node-addon-api": "^1.6.3",
"node-gyp": "^5.0.3",
"postcss-nodegui-autoprefixer": "0.0.7"
},
"devDependencies": {
"@types/bindings": "^1.3.0",
"@types/node": "^12.0.2",
"prettier": "^1.17.1",
"serve": "^11.1.0",
"typescript": "^3.4.5"
},
"gypfile": true
}