-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 799 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 799 Bytes
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
{
"name": "codemirror-lang-EXAMPLE",
"version": "0.1.0",
"description": "EXAMPLE language support for CodeMirror",
"scripts": {
"test": "mocha test/test.js",
"prepare": "rollup -c"
},
"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/language": "^6.0.0",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0"
},
"devDependencies": {
"@lezer/generator": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.1.0",
"mocha": "^11.7.1",
"rollup": "^4.45.1",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
},
"license": "MIT"
}