generated from codemirror/lang-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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
45
{
"name": "@lukashornych/codemirror-lang-evitaql",
"version": "1.3.2",
"description": "evitaQL language support for CodeMirror",
"scripts": {
"test": "mocha test/*.js",
"prepare": "rollup -c"
},
"keywords": [
"editor",
"code",
"evitaql"
],
"author": {
"name": "Lukáš Hornych",
"email": "[email protected]",
"url": "https://lukashornych.com"
},
"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.0.0",
"@codemirror/language": "^6.0.0",
"@codemirror/lint": "^6.4.2",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0"
},
"devDependencies": {
"@lezer/generator": "^1.0.0",
"@rollup/plugin-json": "^6.1.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"
}