-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "cm-spyglass",
"version": "1.2.0",
"exports": {
".": "./index.js",
"./src/Dependency/VanillaMcDocDependency": "./src/Dependency/VanillaMcDocDependency.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node build.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"codemirror",
"spyglass",
"minecraft",
"datapack"
],
"author": "Kurt Thiemann <[email protected]>",
"license": "MIT",
"type": "module",
"description": "A Codemirror extension that provides syntax highlighting, linting, and autocompletion for Minecraft datapacks using SpyglassMC",
"repository": "github:aternosorg/cm-spyglass",
"dependencies": {
"@codemirror/autocomplete": "^6.18.4",
"@codemirror/language": "^6.10.8",
"@codemirror/lint": "^6.8.4",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.2",
"@lezer/highlight": "^1.2.1",
"@spyglassmc/core": "^0.4.26",
"@spyglassmc/java-edition": "^0.3.35",
"@spyglassmc/mcdoc": "^0.3.30",
"base64-arraybuffer": "^1.0.2",
"fflate": "^0.8.2"
},
"devDependencies": {
"decompress": "^4.2.1"
}
}