-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.05 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@burger-editor/client",
"version": "4.0.0-alpha.73",
"description": "BurgerEditor client package",
"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/client"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": {
"import": "./dist/client.js",
"types": "./dist/index.d.ts"
},
"./ui": {
"import": "./dist/ui.js",
"types": "./dist/ui.d.ts"
},
"./testing": {
"import": "./dist/testing.js",
"types": "./dist/testing/index.d.ts"
},
"./style": {
"import": "./dist/client.css"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npx run-p build:check build:build",
"build:build": "vite build",
"build:check": "tsc -p tsconfig.check.json",
"dev": "vite build --watch"
},
"dependencies": {
"@burger-editor/core": "4.0.0-alpha.73",
"@burger-editor/custom-element": "4.0.0-alpha.73",
"@burger-editor/migrator": "4.0.0-alpha.73",
"@burger-editor/utils": "4.0.0-alpha.73",
"@tabler/icons-react": "3.46.0",
"react-error-boundary": "6.1.5",
"use-sync-external-store": "1.7.0"
},
"devDependencies": {
"@babel/core": "7.29.7",
"@babel/preset-typescript": "7.29.7",
"@rolldown/plugin-babel": "0.2.4",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.3",
"@types/babel__core": "7.20.5",
"@types/react": "19.3.0",
"@types/react-dom": "19.3.0",
"@types/use-sync-external-store": "1.7.0",
"@vitejs/plugin-react": "6.1.1",
"babel-plugin-react-compiler": "1.0.0",
"react": "19.3.0",
"react-dom": "19.3.0",
"vite": "8.3.0",
"vite-plugin-dts": "5.1.0",
"vitest": "4.1.11"
},
"peerDependencies": {
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.3",
"react": "19.3.0",
"react-dom": "19.3.0",
"vitest": "4.1.11"
},
"peerDependenciesMeta": {
"@testing-library/dom": {
"optional": true
},
"@testing-library/react": {
"optional": true
},
"vitest": {
"optional": true
}
}
}