forked from jscoq/jscoq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.38 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "jscoq",
"version": "1.99.1",
"type": "module",
"description": "A port of Coq to JavaScript -- run Coq in your browser",
"main": "frontend/classic/js/index.js",
"browser": {
"path": "path-browserify",
"stream": "stream-browserify",
"tty": false,
"url": false,
"worker_threads": false,
"fs": false,
"crypto": false
},
"bin": {
"jscoq": "./dist-cli/cli.cjs",
"jscoqdoc": "frontend/classic/js/jscoqdoc.cjs"
},
"dependencies": {
"@codemirror/state": "^6.1.1",
"@codemirror/view": "^6.2.4",
"@octokit/core": "^4.2.1",
"@vscode/webview-ui-toolkit": "^1.2.1",
"array-equal": "^1.0.0",
"browser-or-node": "^2.0.0",
"child-process-promise": "^2.2.1",
"codemirror": "^5.61.0",
"commander": "^5.0.0",
"fflate-unzip": "^0.7.0",
"find": "^0.3.0",
"glob": "^7.1.3",
"jquery": "^3.6.0",
"jszip": "^3.5.0",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"neatjson": "^0.10.5",
"object-hash": "^3.0.0",
"path": "^0.12.7",
"proper-lockfile": "^4.1.2",
"prosemirror-example-setup": "^1.2.1",
"prosemirror-highlightjs": "0.9.1",
"prosemirror-markdown": "^1.9.3",
"prosemirror-schema-basic": "^1.2.0",
"prosemirror-state": "^1.4.1",
"prosemirror-view": "^1.27.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"split.js": "^1.6.5",
"throttle-debounce": "^5.0.0",
"vue": "^2.6.12",
"vue-context-menu": "^2.0.6",
"wacoq-deps": "0.1.1"
},
"devDependencies": {
"@corwin.amber/hastebin": "^0.1.2",
"@types/codemirror": "^5.60.7",
"@types/find": "^0.2.1",
"@types/glob": "^8.0.1",
"@types/jquery": "^3.5.14",
"@types/lodash": "^4.14.197",
"@types/mkdirp": "^1.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^22.5.5",
"@types/pako": "^2.0.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"assert": "^2.0.0",
"bootstrap": "^5.2.1",
"buffer": "^4.9.2",
"constants-browserify": "^1.0.0",
"css-loader": "^5.2.4",
"esbuild": "^0.19.2",
"esbuild-sass-plugin": "^2.12.0",
"esbuild-wasm": "^0.17.4",
"file-loader": "^6.0.0",
"mocha": "^9.2.2",
"path": "^0.12.7",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"ronin-p2p": "^0.1.0",
"stream-browserify": "^3.0.0",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"vue-loader": "^17.4.2",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"files": [
"dist/wacoq_worker.js",
"dist/frontend/index.js",
"dist/frontend/index.css",
"backend/wasm/*.wasm",
"coq-pkgs",
"examples",
"docs/*.html",
"index.html"
],
"scripts": {
"esbuild": "node esbuild.mjs",
"watch": "node esbuild.mjs --watch",
"release": "node esbuild.mjs --minify --sourcemap=no",
"typecheck": "tsc -b .",
"webpack": "webpack",
"esbuild-cli": "node esbuild-cli.mjs",
"release-cli": "node esbuild-cli.mjs --minify --sourcemap=no",
"esbuild-pkg": "node esbuild-pkg.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jscoq/jscoq.git"
},
"author": "ejgallego",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/jscoq/jscoq/issues"
},
"homepage": "https://jscoq.github.io"
}