-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.29 KB
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
{
"name": "@valtzu/codemirror-lang-el",
"description": "Symfony Expression Language language support for CodeMirror",
"scripts": {
"pretest": "npm run-script prepare",
"test": "cm-runtests",
"prepare": "cm-buildhelper src/index.ts",
"lint-fix": "eslint . --fix --ext .ts,.js",
"lint": "eslint . --ext .ts,.js"
},
"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.9.0",
"@codemirror/language": "^6.0.0",
"@codemirror/lint": "^6.4.2",
"@codemirror/state": "^6.2.1",
"@codemirror/view": "^6.26.3",
"@lezer/highlight": "^1.0.0",
"@lezer/lr": "^1.0.0"
},
"devDependencies": {
"@codemirror/buildhelper": "^1.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"tsdoc-markdown": "^1.1.1",
"eslint": "^8.48.0",
"@typescript-eslint/parser": "^6.5.0",
"@typescript-eslint/eslint-plugin": "^6.5.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/valtzu/codemirror-lang-el"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}