-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (52 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (52 loc) · 1.37 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
48
49
50
51
52
53
{
"name": "symfony-expression-editor",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "pkgroll",
"dev": "pkgroll --watch --sourcemap",
"pretest": "npm run-script build",
"test": "playwright test",
"test:e2e": "playwright test"
},
"description": "Advanced editor for Symfony Expression Language",
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/commands": "^6.8.0",
"@codemirror/language": "^6.10.8",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.3",
"@codemirror/lint": "^6.9.2",
"@codemirror/search": "^6.5.11",
"@lezer/highlight": "^1.2.1",
"@valtzu/codemirror-lang-el": "^1.0.0",
"codemirror": "^6.0.1"
},
"devDependencies": {
"pkgroll": "^2.11.2",
"typescript": "^5.8.2",
"@types/node": "^20.11.0",
"@playwright/test": "^1.40.0",
"playwright": "^1.40.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/valtzu/symfony-expression-editor"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}