-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.12 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
{
"name": "xla-js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "node-gyp build && node scripts/addon.js && tsc -b",
"install": "node-gyp rebuild && node scripts/addon.js && tsc -b",
"start": "node ./dist/index.js",
"debug": "node-gyp build --debug -j1 CXXFLAGS=\"-Wno-deprecated -Wno-deprecated-declarations\"",
"configure": "node-gyp configure",
"configure:xcode": "node-gyp configure -- -f xcode",
"configure:cmake": "node-gyp configure -- -f cmake",
"cfg": "npm run configure && npm run configure:xcode && npm run configure:cmake",
"clean": "node-gyp clean",
"test": "jest"
},
"author": "Jaroslav Sevcik ([email protected])",
"license": "MIT",
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^7.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"clang-format": "^1.8.0",
"jest": "^29.7.0",
"prettier": "3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}