-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"author": "Luis Blanco <[email protected]>",
"name": "qml-raub",
"version": "4.0.0",
"description": "QML interoperation for Node.js",
"license": "MIT",
"main": "index.js",
"keywords": [
"addon",
"qml",
"gui",
"qtquick",
"graphics",
"c++",
"bindings",
"native",
"gyp",
"qt",
"qt-qml",
"binary",
"library",
"c++"
],
"files": [
"js",
"core.js",
"index.js",
"index.d.ts",
"install.js",
"LICENSE",
"package.json"
],
"engines": {
"node": ">=22.9.0",
"npm": ">=10.8.3"
},
"scripts": {
"postinstall": "node install",
"eslint": "eslint .",
"build": "cd src && node-gyp rebuild -j max --silent && node -e \"require('addon-tools-raub').cpbin('qml')\" && cd ..",
"build-only": "cd src && node-gyp build -j max --silent && node -e \"require('addon-tools-raub').cpbin('qml')\" && cd ..",
"test": "node --test --watch",
"test-ci": "node --test"
},
"repository": {
"type": "git",
"url": "https://github.com/node-3d/qml-raub.git"
},
"dependencies": {
"addon-tools-raub": "^9.1.1",
"deps-qmlui-raub": "^4.0.0",
"segfault-raub": "^3.0.1"
},
"devDependencies": {
"@types/node": "^22.7.9",
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"node-addon-api": "^8.2.1",
"typescript": "^5.6.3"
}
}