-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 984 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 984 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
40
41
42
43
44
{
"name": "@burger-editor/core",
"version": "4.0.0-alpha.73",
"description": "BurgerEditor Editor Core",
"author": "D-ZERO",
"license": "(MIT OR Apache-2.0)",
"repository": {
"type": "git",
"url": "https://github.com/d-zero-dev/BurgerEditor.git",
"directory": "packages/@burger-editor/core"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./health": {
"import": "./dist/health-monitor.js",
"types": "./dist/health-monitor.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"dev": "tsc --watch --project tsconfig.build.json",
"clean": "tsc --build --clean"
},
"dependencies": {
"@burger-editor/frozen-patty": "4.0.0-alpha.73",
"@burger-editor/utils": "4.0.0-alpha.73",
"gray-matter": "4.0.3",
"jaco": "5.0.0",
"semver": "7.8.5"
},
"devDependencies": {
"@types/semver": "7.8.0"
}
}