@editora/ui-react 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +268 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.esm.js +4051 -0
- package/package.json +42 -0
package/package.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@editora/ui-react",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "React wrappers and hooks for Web Components in the Editora UI ecosystem",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": ["dist"],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "vite build",
|
|
11
|
+
"dev": "vite build --watch",
|
|
12
|
+
"dev:examples": "vite --config examples/vite.config.ts",
|
|
13
|
+
"build:examples": "vite build --config examples/vite.config.ts",
|
|
14
|
+
"prepare": "npm run build"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"typescript": "^5.0.0",
|
|
18
|
+
"vite": "^7.3.1",
|
|
19
|
+
"@types/react": "^18.2.0",
|
|
20
|
+
"@types/react-dom": "^18.2.0"
|
|
21
|
+
},
|
|
22
|
+
"peerDependencies": {
|
|
23
|
+
"react": "^16.8 || ^17 || ^18",
|
|
24
|
+
"react-dom": "^16.8 || ^17 || ^18"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@editora/ui-core": "^0.1.0"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"editora",
|
|
31
|
+
"editora ui ecosystem",
|
|
32
|
+
"ui-react",
|
|
33
|
+
"react",
|
|
34
|
+
"web-components",
|
|
35
|
+
"design-system",
|
|
36
|
+
"typescript",
|
|
37
|
+
"admin-ui",
|
|
38
|
+
"component-library"
|
|
39
|
+
],
|
|
40
|
+
"author": "Ajay Kumar <ajaykr089@gmail.com>",
|
|
41
|
+
"license": "MIT"
|
|
42
|
+
}
|