-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.69 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.69 KB
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
{
"name": "@bubblyworld/highs-ts",
"version": "1.1.0",
"description": "A wasm build of the HiGHS (highs.dev) MILP solver with a convenient typescript interface. Runs with zero dependencies in both node and web environments.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": "./dist/index.node.js",
"browser": "./dist/index.browser.js",
"default": "./dist/index.browser.js"
}
},
"files": [
"dist/",
"build/highs.js",
"build/highs.wasm"
],
"scripts": {
"build": "npm run build:wasm && npm run build:ts",
"build:wasm": "cd build && ./build.sh",
"build:ts": "tsc && rollup -c",
"serve": "node --import tsx web/server.ts",
"test": "npm run test:node && npm run test:browser",
"test:node": "vitest run",
"test:browser": "playwright test --config test/playwright.config.ts",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"highs",
"constraint",
"optimise",
"lp",
"mip",
"milp"
],
"author": "Guy Paterson-Jones",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Bubblyworld/highs-ts.git"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/node": "^20.0.0",
"rollup": "^4.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}