-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
74 lines (74 loc) · 2.12 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "codemirror-lang-glimmer",
"version": "0.0.0",
"author": "NullVoxPopuli",
"license": "MIT",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/NullVoxPopuli/limber.git",
"directory": "packages/syntax/glimmer/codemirror"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@codemirror/buildhelper": "^1.0.1",
"@codemirror/language": "^6.10.1",
"@lezer/common": "^1.1.2",
"@lezer/generator": "^1.6.0",
"@nullvoxpopuli/eslint-configs": "^3.2.2",
"@tsconfig/ember": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"codemirror": "^6.0.1",
"concurrently": "^8.2.2",
"eslint": "^8.55.0",
"prettier": "^3.2.5",
"rollup": "^4.9.6",
"rollup-plugin-ts": "^3.4.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@codemirror/autocomplete": "6.15.0",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.8",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.23.0",
"@glimdown/lezer-glimmer-expression": "workspace:*",
"@lezer/highlight": "^1.2.0",
"@lezer/html": "^1.3.7",
"@lezer/javascript": "^1.4.13",
"@lezer/lr": "^1.4.0",
"lezer-glimmer": "workspace:*"
},
"scripts": {
"dev": "node ./dev/watch.cjs src/index.ts",
"build": "cm-buildhelper src/index.ts",
"lint": "pnpm -w exec lint",
"lint:types": "tsc --noEmit",
"lint:fix": "pnpm -w exec lint fix",
"lint:js": "pnpm -w exec lint js",
"lint:js:fix": "pnpm -w exec lint js:fix",
"lint:prettier:fix": "pnpm -w exec lint prettier:fix",
"lint:prettier": "pnpm -w exec lint prettier"
},
"volta": {
"extends": "../../../../package.json"
},
"engines": {
"node": ">= v16",
"npm": "use pnpm",
"yarn": "use pnpm"
},
"peerDependencies": {
"@lezer/common": "^1.1.2"
}
}