-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "@mainsail-crew/lang-gcode",
"version": "0.1.0",
"licenses": "MIT",
"repository": "https://github.com/mainsail-crew/codemirror-lang-gcode",
"description": "gcode language support for CodeMirror",
"scripts": {
"test": "mocha test/test.js",
"prepare": "cm-buildhelper src/index.ts"
},
"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/highlight": "^0.19.6",
"@codemirror/language": "^0.19.3",
"@lezer/lr": "^0.15.0"
},
"devDependencies": {
"@codemirror/buildhelper": "0.1.11",
"@lezer/generator": "^0.15.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"mocha": "^9.0.1",
"rollup": "^2.35.1",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-ts": "^1.4.0",
"typescript": "^4.3.4"
},
"license": "MIT"
}