-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "@cookshack/codemirror-lang-zig",
"version": "0.1.2",
"description": "Zig language support for CodeMirror 6",
"homepage": "https://git.sr.ht/~mattmundell/codemirror-lang-zig",
"scripts": {
"check": "./node_modules/@cookshack/build/bin/check *.js src/*.js",
"prepare": "./node_modules/@cookshack/build/bin/prepare",
"test": "mocha test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://git.sr.ht/~mattmundell/codemirror-lang-zig"
},
"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.18.1",
"@codemirror/language": "^6.0.0",
"@lezer/highlight": "^1.2.1",
"@lezer/lr": "^1.0.0"
},
"devDependencies": {
"@cookshack/build": "^0.2.0",
"@cookshack/eslint-config": "^0.1.6",
"@lezer/generator": "^1.0.0",
"husky": "^9.1.7",
"lezer-utils": "^0.2.0",
"mocha": "^10.7.3",
"rollup": "^4.28.0",
"rollup-plugin-dts": "^6.1.1"
},
"license": "MIT"
}