-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 930 Bytes
/
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
{
"name": "@tatatap-com/sowhat-editor",
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"private": false,
"version": "2.2.0",
"scripts": {
"dev": "vite",
"build:umd": "vite build",
"build:demo": "vite build --mode development",
"build": "npm run build:demo && npm run build:umd",
"preview": "vite preview"
},
"devDependencies": {
"@tatatap-com/sowhat": "^2.1.3",
"rollup": "^2.70.1",
"vite": "^2.9.0"
},
"dependencies": {
"@codemirror/autocomplete": "0.19.15",
"@codemirror/closebrackets": "0.19.1",
"@codemirror/commands": "0.19.8",
"@codemirror/highlight": "0.19.8",
"@codemirror/history": "0.19.2",
"@codemirror/language": "0.19.10",
"@codemirror/legacy-modes": "0.19.1",
"@codemirror/matchbrackets": "0.19.4",
"@codemirror/state": "0.19.9",
"@codemirror/stream-parser": "0.19.9",
"@codemirror/view": "0.19.48"
}
}