-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
73 lines (73 loc) · 2.18 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
{
"name": "@nullvoxpopuli/limber-codemirror",
"version": "0.0.1",
"description": "custom build of codemirror for use in Limber",
"type": "module",
"exports": {
"./preconfigured": "./dist/preconfigured.js",
"./broccoli-funnel": {
"require": "./broccoli-funnel.cjs"
}
},
"author": "NullVoxPopuli",
"license": "MIT",
"private": true,
"scripts": {
"build": "node build.cjs",
"dev": "pnpm build --watch",
"lint:types": "tsc --noEmit",
"lint:fix": "pnpm -w exec lint fix",
"lint": "pnpm -w exec lint",
"lint:prettier:fix": "pnpm -w exec lint prettier:fix",
"lint:prettier": "pnpm -w exec lint prettier"
},
"browser": {
"path": "path-browserify"
},
"dependencies": {
"@codemirror/autocomplete": "6.18.6",
"@codemirror/commands": "6.8.0",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "6.2.3",
"@codemirror/lang-markdown": "6.3.2",
"@codemirror/language": "^6.10.8",
"@codemirror/language-data": "^6.5.1",
"@codemirror/lint": "^6.8.4",
"@codemirror/search": "6.5.10",
"@codemirror/state": "6.5.2",
"@codemirror/view": "6.36.4",
"@lezer/common": "^1.2.3",
"@lezer/highlight": "^1.2.1",
"@lezer/html": "^1.3.10",
"@lezer/markdown": "^1.4.1",
"@nullvoxpopuli/horizon-theme": "workspace:*",
"assert": "npm:@nolyfill/assert@^1",
"broccoli-funnel": "^3.0.8",
"codemirror": "^6.0.1",
"codemirror-lang-glimdown": "workspace:*",
"codemirror-lang-glimmer": "workspace:*",
"codemirror-lang-glimmer-js": "workspace:*",
"codemirror-languageserver": "^1.12.1",
"path-browserify": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@nullvoxpopuli/eslint-configs": "^5.0.0",
"concurrently": "^9.1.2",
"esbuild": "0.25.0",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^9.21.0",
"prettier": "^3.5.2",
"prettier-plugin-ember-template-tag": "2.0.4",
"recursive-copy": "^2.0.14",
"typescript": "5.7.3"
},
"volta": {
"extends": "../../../package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/NullVoxPopuli/limber.git",
"directory": "packages/app-support/codemirror"
}
}