-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "lezer-lang-surrealql",
"version": "0.1.0",
"description": "SurrealQL language support for CodeMirror 6",
"main": "dist/index.cjs",
"type": "module",
"author": {
"name": "Daniel Bulant",
"email": "/@danbulant.eu",
"url": "https://danbulant.eu"
},
"repository": {
"type": "git",
"url": "https://github.com/danbulant/lang-surrealql.git"
},
"homepage": "https://github.com/danbulant/lang-surrealql",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"test": "cm-runtests",
"prepare": "lezer-generator src/surrealql.grammar -o src/surrealql.grammar && cm-buildhelper src/surrealql.ts"
},
"types": "dist/index.d.ts",
"module": "dist/index.js",
"sideEffects": false,
"license": "MIT",
"devDependencies": {
"@lezer/generator": "^1.0.0",
"@codemirror/buildhelper": "^1.0.0"
},
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@lezer/common": "^1.2.0",
"@lezer/highlight": "^1.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/state": "^6.0.0",
"@lezer/lr": "^1.4.0"
}
}