-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
{
"name": "@tenzir/codemirror-lang-tql",
"repository": {
"type": "git",
"url": "git+https://github.com/tenzir/codemirror-lang-tql.git"
},
"publishConfig": {
"access": "public"
},
"version": "0.4.4",
"description": "Tenzir Query Language (TQL) support for CodeMirror",
"scripts": {
"build": "lezer-generator src/tql.grammar -o src/parser && rollup -c",
"build-debug": "lezer-generator src/tql.grammar --names -o src/parser && rollup -c",
"test": "mocha test/test.js"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"sideEffects": false,
"dependencies": {
"@codemirror/autocomplete": "^6.6.0",
"@codemirror/language": "^6.0.0",
"@lezer/highlight": "^1.1.6",
"@lezer/lr": "^1.3.0",
"hastscript": "^8.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@lezer/generator": "^1.3.0",
"mocha": "^9.0.1",
"rollup": "^2.60.2",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-ts": "^3.0.2",
"typescript": "^4.3.4"
},
"license": "MIT",
"packageManager": "[email protected]+sha512.8e4c3550fb500e808dbc30bb0ce4dd1eb614e30b1c55245f211591ec2cdf9c611cabd34e1364b42f564bd54b3945ed0f49d61d1bbf2ec9bd74b866fcdc723276"
}