-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.52 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
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
{
"name": "ublatt",
"files": [
"*",
"dist/*"
],
"main": "dist/ublatt.js",
"version": "1.4.2",
"description": "An interactive exercise sheet generator",
"homepage": "https://github.com/martinring/ublatt",
"license": "MIT",
"bugs": "https://github.com/martinring/ublatt/issues",
"scripts": {
"build": "./build.js",
"clean": "rm -rf dist"
},
"author": "Martin Ring <martin.ring@dfki.de> (https://www.martinring.de)",
"repository": "github:martinring/ublatt",
"type": "module",
"bin": {
"ublatt": "node --enable-source-maps bin/ublatt.js"
},
"os": [
"darwin",
"linux"
],
"dependencies": {
"@codemirror/commands": "^0.17.0",
"@codemirror/gutter": "^0.17.0",
"@codemirror/highlight": "^0.17.0",
"@codemirror/history": "^0.17.0",
"@codemirror/lang-cpp": "^0.17.0",
"@codemirror/lang-css": "^0.17.0",
"@codemirror/lang-html": "^0.17.0",
"@codemirror/lang-java": "^0.17.0",
"@codemirror/lang-javascript": "^0.17.0",
"@codemirror/lang-json": "^0.17.0",
"@codemirror/lang-markdown": "^0.17.0",
"@codemirror/lang-python": "^0.17.0",
"@codemirror/lang-rust": "^0.17.0",
"@codemirror/lang-sql": "^0.17.0",
"@codemirror/lang-xml": "^0.17.0",
"@codemirror/language": "^0.17.0",
"@codemirror/legacy-modes": "^0.17.0",
"@codemirror/state": "^0.17.0",
"@codemirror/view": "^0.17.0",
"@hpcc-js/wasm": "1.2.0",
"diagram-js": "7.2.0",
"esbuild": "^0.8.31",
"katex": "^0.12.0",
"lezer-generator": "^0.13.2",
"markdown-it": "^12.0.4",
"markdown-it-attrs": "^4.0.0",
"markdown-it-bracketed-spans": "^1.0.1",
"markdown-it-container": "^3.0.0",
"markdown-it-header-sections": "^1.0.0",
"markdown-it-texmath": "0.8.0",
"mermaid": "8.9.0",
"prismjs": "1.21.0",
"punycode": "^2.1.1",
"source-map-support": "^0.5.19",
"style-mod": "^3.2.1",
"yaml": "^1.10.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/babel__core": "^7.1.12",
"@types/katex": "^0.11.0",
"@types/markdown-it": "^12.0.1",
"@types/markdown-it-container": "^2.0.3",
"@types/mermaid": "8.2.1",
"@types/node": "^14.14.19",
"@types/prismjs": "1.9.0",
"@types/yargs": "^16.0.0",
"tslib": "2.1.0",
"typescript": "^4.1.3"
}
}