-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 819 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"type": "module",
"scripts": {
"build": "esbuild --bundle --sourcemap --outfile=gh-pages/index.js gh-pages/editor.js && esbuild --bundle --outfile=gh-pages/make_editor_out.js gh-pages/make_editor.js",
"dev": "esbuild --banner:js=\"\\\"use strict\\\";\" --bundle --sourcemap --servedir=gh-pages --outfile=gh-pages/index.js gh-pages/editor.js",
"test": "node --test t/*.js"
},
"dependencies": {
"@codemirror/autocomplete": "",
"@codemirror/commands": "",
"@codemirror/language": "",
"@codemirror/view": "",
"@defasm/cli": "file:cli",
"@defasm/codemirror": "file:codemirror",
"@defasm/core": "file:core",
"@lezer/common": "",
"@lezer/generator": "",
"@lezer/highlight": "",
"@lezer/lr": "",
"cm6-theme-material-dark": "^0.2.0",
"esbuild": ""
}
}