-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.14 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
{
"name": "highs-solver",
"version": "0.0.0",
"repository": "github:opvious/highs.ts",
"description": "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"
},
"type": "module",
"files": [
"lib/"
],
"exports": {
".": "./lib/index.js",
"./errors": "./lib/index.errors.js",
"./setup": "./lib/setup.js"
},
"scripts": {
"build": "tsc -p src",
"clean": "rm -rf lib node_modules out",
"fix": "prettier --write",
"prepare": "pnpm run build && inlinable r",
"test": "vitest",
"watch": "tsc -b -w src test"
},
"dependencies": {
"@opvious/stl-errors": "^0.27.3",
"@opvious/stl-telemetry": "^0.27.3",
"@opvious/stl-utils": "^0.27.3",
"highs-addon": "workspace:*",
"tail": "^2.2.6",
"tmp-promise": "^3.0.3"
},
"peerDependencies": {
"@opentelemetry/api": "^1.8.0"
},
"devDependencies": {
"@opentelemetry/api": "^1.9.0",
"@types/tail": "^2.2.3",
"inlinable": "^0.3.5"
}
}