forked from opvious/highs.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.03 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
{
"name": "highs-addon",
"version": "0.0.0",
"repository": "github:opvious/highs.ts",
"description": "Low-level Node.js binding for the HiGHS optimization solver",
"keywords": [
"highs",
"optimization",
"opvious",
"solver"
],
"author": "Opvious Engineering <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=16"
},
"main": "./index.cjs",
"files": [
"prebuilds/",
"src/",
"binding-options.js",
"CMakeLists.txt",
"index.d.ts",
"index.cjs"
],
"scripts": {
"build": "cmake-js build",
"clean": "rm -rf build node_modules",
"postinstall": "pkg-prebuilds-verify ./binding-options.js || cmake-js build",
"rebuild": "cmake-js rebuild",
"test": "vitest"
},
"dependencies": {
"pkg-prebuilds": "^1.0.0"
},
"optionalDependencies": {
"cmake-js": "^7.3.0",
"node-addon-api": "^8.3.0"
},
"devDependencies": {
"tmp-promise": "^3.0.3"
},
"cmake-js": {
"runtime": "node"
},
"binary": {
"napi_versions": [
8
]
}
}