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

41 lines
1022 B
JSON

{
"name": "@nodegui/nodegui",
"version": "0.2.0",
"description": "A cross platform library to build native desktop apps.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"config",
"CMakeLists.txt",
"src/cpp",
"extras/legal",
"plugin"
],
"author": "Atul R <atulanand94@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"dev": "npm run build && qode dist/demo.js",
"postinstall": "npm run build:addon",
"build": "tsc && npm run build:addon",
"build:addon": "cross-env CMAKE_BUILD_PARALLEL_LEVEL=8 cmake-js compile",
"docs": "serve docs"
},
"dependencies": {
"@nodegui/qode": "^1.0.5",
"cmake-js": "^5.3.2",
"cross-env": "^6.0.0",
"cuid": "^2.1.6",
"node-addon-api": "^1.6.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"
}
}