-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.24 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.24 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
{
"name": "mathprog-editor",
"version": "0.1.0",
"description": "CodeMirror 6 extension for MathProg/GMPL code editing — syntax highlighting, live math rendering with KaTeX, rainbow brackets, linting, and autocomplete for linear programming and optimization models",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"grammar": "lezer-generator src/language/mathprog.grammar -o src/language/mathprog.grammar.js",
"build": "npm run grammar && rollup -c rollup.config.mjs",
"dev": "rollup -c rollup.config.mjs --watch --environment DEV",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"codemirror",
"codemirror-6",
"mathprog",
"gmpl",
"glpk",
"editor",
"syntax-highlighting",
"math-rendering",
"katex",
"linear-programming",
"optimization",
"operations-research",
"lezer",
"code-editor",
"math-editor",
"linting",
"autocomplete",
"rainbow-brackets"
],
"author": "",
"license": "MIT",
"homepage": "https://github.com/jonra/MathProg#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jonra/MathProg.git"
},
"bugs": {
"url": "https://github.com/jonra/MathProg/issues"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.0",
"@codemirror/commands": "^6.7.0",
"@codemirror/language": "^6.10.0",
"@codemirror/lint": "^6.8.0",
"@codemirror/search": "^6.5.0",
"@codemirror/state": "^6.5.0",
"@codemirror/view": "^6.35.0",
"@lezer/common": "^1.2.0",
"@lezer/highlight": "^1.2.0",
"@lezer/lr": "^1.4.0",
"katex": "^0.16.11"
},
"devDependencies": {
"@lezer/generator": "^1.7.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.0",
"rollup": "^4.28.0",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-livereload": "^2.0.5",
"tslib": "^2.8.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}