-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.34 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "yalps",
"version": "0.6.4",
"description": "Yet another linear programming solver. (A rewrite of javascript-lp-solver.) Aims to be decently fast.",
"homepage": "https://github.com/IanManske/YALPS",
"license": "MIT",
"author": {
"name": "Ian Manske"
},
"type": "module",
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.min.js",
"jsdelivr": "dist/index.min.js",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/IanManske/YALPS.git"
},
"bugs": {
"url": "https://github.com/IanManske/YALPS/issues"
},
"keywords": [
"Linear Programming",
"Integer Programming",
"Mixed Integer Linear Programming",
"LP",
"ILP",
"MILP",
"Solver",
"Linear Optimization"
],
"scripts": {
"inspect": "node --import=tsimp --expose-gc --inspect-brk",
"benchmark": "node --import=tsimp --expose-gc benchmarks/run.ts",
"benchmark:inspect": "run-s \"inspect benchmarks/run.ts\"",
"format": "prettier --check .",
"lint": "eslint .",
"type-check": "tsc",
"check": "run-s format lint type-check",
"format:fix": "prettier --write .",
"lint:fix": "eslint --fix .",
"fix": "run-s '*:fix'",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"test:watch": "vitest --watch",
"build": "tsup",
"build:watch": "tsup --watch",
"export-check": "attw --pack .",
"prepack": "run-s build"
},
"dependencies": {
"heap": "^0.2.7"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@eslint/js": "^9.39.2",
"@types/heap": "^0.2.35",
"@types/node": "^20.19.27",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"glpk.js": "^5.0.0",
"javascript-lp-solver": "^0.4.24",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.4",
"tsimp": "^2.0.12",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vitest": "^4.0.16"
}
}