-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 906 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 906 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
33
34
35
36
37
38
39
{
"name": "@burger-editor/runtime",
"version": "4.0.0-alpha.73",
"description": "Runtime library for BurgerEditor generated content in the browser",
"author": "D-ZERO",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/d-zero-dev/BurgerEditor.git",
"directory": "packages/@burger-editor/runtime"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": {
"import": "./dist/runtime.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"clean": "rm -rf dist",
"test:serve": "vite --config vite.config.test.ts"
},
"devDependencies": {
"@burger-editor/blocks": "4.0.0-alpha.70",
"@burger-editor/core": "4.0.0-alpha.73",
"@burger-editor/css": "4.0.0-alpha.73",
"typescript": "5.9.3",
"vite": "8.3.0",
"vite-plugin-dts": "5.1.0"
}
}