-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.08 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": "codemirror-lang-sparql",
"version": "2.0.0",
"description": "Sparql language support for CodeMirror",
"scripts": {
"build": "lezer-generator src/syntax.grammar -o src/parser && rollup -c",
"build-debug": "lezer-generator src/syntax.grammar --names -o src/parser && rollup -c",
"test": "mocha test/test.js",
"release": "release-it"
},
"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,
"author": "Achraf Atauil",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aatauil/codemirror-lang-sparql.git"
},
"dependencies": {
"@codemirror/language": "^6.0.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0"
},
"devDependencies": {
"@lezer/generator": "^1.0.0",
"mocha": "^9.0.1",
"release-it": "^17.10.0",
"rollup": "^2.60.2",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-ts": "^3.0.2",
"typescript": "^4.3.4"
}
}