@nice2dev/ui-designers 1.0.10

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/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "@nice2dev/ui-designers",
3
+ "version": "1.0.10",
4
+ "description": "Nice2Dev UI Designers - Visual designer & no-code builder components: DashboardDesigner, WorkflowDesigner, ThemeDesigner, ThemeBuilder, ViewBuilder, ControlConfigurator",
5
+ "type": "module",
6
+ "sideEffects": [
7
+ "*.css"
8
+ ],
9
+ "main": "./dist/index.cjs",
10
+ "module": "./dist/index.mjs",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.mjs",
15
+ "require": "./dist/index.cjs",
16
+ "types": "./dist/index.d.ts"
17
+ },
18
+ "./style.css": "./dist/style.css"
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md"
23
+ ],
24
+ "scripts": {
25
+ "build": "vite build",
26
+ "build:types": "tsc --emitDeclarationOnly",
27
+ "dev": "vite build --watch",
28
+ "lint": "eslint src --ext .ts,.tsx",
29
+ "test": "vitest run --passWithNoTests",
30
+ "test:watch": "vitest"
31
+ },
32
+ "dependencies": {},
33
+ "peerDependencies": {
34
+ "@nice2dev/ui": "^1.0.10",
35
+ "react": ">=17.0.0",
36
+ "react-dom": ">=17.0.0"
37
+ },
38
+ "devDependencies": {
39
+ "@testing-library/react": "^14.1.0",
40
+ "@types/react": "^18.2.0",
41
+ "@types/react-dom": "^18.2.0",
42
+ "react": "^18.2.0",
43
+ "react-dom": "^18.2.0",
44
+ "typescript": "^5.3.0",
45
+ "vite": "^5.0.0",
46
+ "vite-plugin-dts": "^4.5.4",
47
+ "vitest": "^4.1.0"
48
+ },
49
+ "keywords": [
50
+ "designer",
51
+ "builder",
52
+ "no-code",
53
+ "low-code",
54
+ "dashboard",
55
+ "workflow",
56
+ "theme",
57
+ "nice2dev",
58
+ "react"
59
+ ],
60
+ "author": "Nice2Dev",
61
+ "license": "MIT",
62
+ "repository": {
63
+ "type": "git",
64
+ "url": "https://github.com/nicetoDev/nicetoDev-ui.git",
65
+ "directory": "packages/ui-designers"
66
+ }
67
+ }