-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 815 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 815 Bytes
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
{
"name": "@emmetio/codemirror6-plugin",
"version": "0.4.0",
"main": "./dist/plugin.js",
"types": "./dist/plugin.d.ts",
"type": "module",
"scripts": {
"dev": "vite --port=3009",
"build": "vite build && tsc",
"serve": "vite preview",
"prepare": "npm run build"
},
"devDependencies": {
"@lezer/common": "^1.2.1",
"codemirror": "^6.0.1",
"typescript": "^5.5.4",
"vite": "^5.3.5"
},
"dependencies": {
"@emmetio/math-expression": "^1.0.5",
"emmet": "^2.4.11"
},
"peerDependencies": {
"@codemirror/autocomplete": "^6.17.0",
"@codemirror/commands": "^6.6.0",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/language": "^6.10.2",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.29.1"
}
}