-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.54 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
{
"name": "acode-additional-langmodes",
"version": "1.1.3",
"description": "Additional CodeMirror language modes for Acode",
"main": "src/main.js",
"repository": "",
"author": "",
"license": "MIT",
"dependencies": {
"@citedrive/codemirror-lang-bibtex": "^6.4.1",
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.3",
"@iizukak/codemirror-lang-wgsl": "^0.3.0",
"@lezer/common": "^1.5.2",
"@lezer/highlight": "^1.2.3",
"@lezer/lr": "^1.4.10",
"@replit/codemirror-lang-svelte": "^6.0.0",
"@viz-js/lang-dot": "^1.0.5",
"acode-plugin-types": "^1.11.7-patch.2",
"cm6-graphql": "^0.2.1",
"codemirror-lang-elixir": "^4.0.1",
"codemirror-lang-golfscript": "^0.1.0",
"codemirror-lang-hcl": "^0.1.0",
"codemirror-lang-j": "^0.1.1",
"codemirror-lang-janet": "^0.7.2",
"codemirror-lang-pkl": "^0.1.0",
"html-tag-js": "^2.4.15"
},
"devDependencies": {
"@lezer/generator": "^1.8.0",
"esbuild": "^0.25.8",
"jszip": "^3.10.1",
"typescript": "^6.0.3"
},
"scripts": {
"dev": "node esbuild.config.mjs --serve",
"generate": "node scripts/generate-parsers.mjs",
"build": "npm run generate && node esbuild.config.mjs",
"test": "npm run generate && node scripts/test-parser.mjs",
"check": "npm run generate && tsc --noEmit && node scripts/test-parser.mjs && npm run build && node scripts/test-plugin-runtime.cjs"
},
"browserslist": "cover 100%,not android < 5"
}