93 lines
2.9 KiB
JSON
93 lines
2.9 KiB
JSON
{
|
|
"name": "@nodegui/nodegui",
|
|
"version": "0.58.0-rc3",
|
|
"description": "A cross-platform library to build native desktop apps.",
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"author": "Atul R <atulanand94@gmail.com>",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"bin": {
|
|
"qode": "scripts/qode.js"
|
|
},
|
|
"funding": {
|
|
"url": "https://github.com/sponsors/a7ul"
|
|
},
|
|
"scripts": {
|
|
"dev": "npm run build && node ./scripts/qode.js dist/demo.js",
|
|
"demo": "node ./scripts/qode.js dist/demo.js",
|
|
"build": "tsc && npm run build:addon",
|
|
"install": "npm run setupqt && (node ./scripts/skip.js || npm run setupbinary || npm run build:addon)",
|
|
"setupqt": "node ./scripts/setupMiniQt.js",
|
|
"setupbinary": "node ./scripts/setupBinary.js",
|
|
"build:addon": "cross-env CMAKE_BUILD_PARALLEL_LEVEL=8 cmake-js compile",
|
|
"test": "node ./scripts/qode.js ./node_modules/jest/bin/jest -i",
|
|
"lint:cpp": "clang-format -i --glob=src/cpp/**/*.[h,c]*",
|
|
"lint:ts": "tsc --noEmit && eslint ./src --fix",
|
|
"docs": "typedoc && node ./website/docs/scripts/fixdocs.js",
|
|
"qode": "node ./scripts/qode.js",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.x.x"
|
|
},
|
|
"engineStrict": false,
|
|
"dependencies": {
|
|
"@nodegui/artifact-installer": "^1.1.0",
|
|
"@nodegui/qode": "^18.12.1-rc1",
|
|
"cmake-js": "^6.2.1",
|
|
"cross-env": "^7.0.3",
|
|
"cuid": "^2.1.8",
|
|
"manage-path": "^2.0.0",
|
|
"memoize-one": "^5.2.1",
|
|
"node-addon-api": "^4.0.0",
|
|
"postcss": "^7.0.17",
|
|
"postcss-nodegui-autoprefixer": "0.0.7",
|
|
"tar": "^6.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bindings": "^1.5.1",
|
|
"@types/jest": "29.2.4",
|
|
"@types/node": "^16.4.13",
|
|
"@typescript-eslint/eslint-plugin": "^4.29.0",
|
|
"@typescript-eslint/parser": "^4.29.0",
|
|
"clang-format": "^1.5.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^3.4.0",
|
|
"husky": "^7.0.1",
|
|
"jest": "29.3.1",
|
|
"prettier": "^2.3.2",
|
|
"ts-jest": "29.0.3",
|
|
"typedoc": "^0.17.8",
|
|
"typedoc-plugin-markdown": "^2.4.2",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"binary": {
|
|
"napi_versions": [
|
|
4
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-push": "npm run build && npm run lint:ts && npm run lint:cpp && npm run test"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nodegui/nodegui.git"
|
|
},
|
|
"keywords": [
|
|
"nodegui",
|
|
"gui",
|
|
"qt",
|
|
"nodejs",
|
|
"css",
|
|
"desktop"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/nodegui/nodegui/issues"
|
|
},
|
|
"homepage": "https://github.com/nodegui/nodegui#readme"
|
|
}
|