-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "highs",
"version": "1.8.0",
"description": "Mixed integer linear programming library, built by compiling a high-performance C++ solver developed by the University of Edinburgh (HiGHS) to WebAssembly.",
"main": "build/highs.js",
"type": "commonjs",
"exports": {
".": {
"types": "./types.d.ts",
"default": "./build/highs.js"
},
"./runtime": "./build/highs.wasm"
},
"types": "types.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "tsc && node tests/test.js",
"build": "./build.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lovasoa/highs-js.git"
},
"keywords": [
"linear programming",
"LP",
"MILP",
"solver",
"maths",
"or",
"optimization"
],
"author": "Ophir LOJKINE",
"license": "MIT",
"bugs": {
"url": "https://github.com/lovasoa/highs-js/issues"
},
"homepage": "https://lovasoa.github.io/highs-js/",
"runkitExampleFilename": "example.js",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"typescript": "^5.6.3"
},
"files": [
"build/highs.js",
"build/highs.wasm",
"package.json",
"types.d.ts",
"README.md"
]
}