-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1 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": "@iizukak/codemirror-lang-wgsl",
"version": "0.3.0",
"description": "WGSL language support for CodeMirror",
"author": {
"name": "Kentaro Iizuka",
"email": "[email protected]"
},
"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": "6.x",
"@codemirror/language": "6.x",
"@lezer/highlight": "1.x",
"@lezer/lr": "^1.x"
},
"devDependencies": {
"@lezer/generator": "1.x",
"@rollup/plugin-node-resolve": "15.x",
"mocha": "10.x",
"rollup": "3.x",
"rollup-plugin-dts": "5.x",
"rollup-plugin-ts": "3.x"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iizukak/codemirror-lang-wgsl/"
},
"keywords": [
"editor",
"code"
]
}