-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "lezer-utils",
"version": "0.3.1",
"description": "Utils for working with Lezer grammars",
"homepage": "https://git.sr.ht/~mattmundell/lezer-utils",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
"./pretty": {
"import": "./dist/pretty.js",
"require": "./dist/pretty.cjs"
},
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"prepare": "./node_modules/@cookshack/build/bin/prepare",
"check": "./node_modules/@cookshack/build/bin/check *.js",
"test": "true"
},
"repository": {
"type": "git",
"url": "git+https://git.sr.ht/~mattmundell/codemirror-lang-eg"
},
"type": "module",
"author": "Matt Mundell",
"license": "MIT",
"devDependencies": {
"@cookshack/build": "^0.2.0",
"@cookshack/eslint-config": "^0.1.6",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"husky": "^9.1.7",
"rollup": "^4.28.0"
},
"dependencies": {
"@codemirror/state": "^6.4.1",
"commander": "^12.1.0"
}
}