dp-widgets-framework 1.0.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 +478 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.css +1 -0
- package/dist/index.esm.js +40532 -0
- package/dist/index.js +40566 -0
- package/dist/tailwind.config.d.ts +3 -0
- package/package.json +137 -0
package/package.json
ADDED
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dp-widgets-framework",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"registry": "https://registry.npmjs.org"
|
|
7
|
+
},
|
|
8
|
+
"description": "A React framework for creating customizable widget dashboards with drag-and-drop functionality",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"react",
|
|
11
|
+
"widgets",
|
|
12
|
+
"dashboard",
|
|
13
|
+
"framework",
|
|
14
|
+
"drag-and-drop",
|
|
15
|
+
"customizable"
|
|
16
|
+
],
|
|
17
|
+
"homepage": "https://github.com/aretec-inc/di-widgets-framework",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "https://github.com/aretec-inc/di-widgets-framework.git"
|
|
21
|
+
},
|
|
22
|
+
"author": "Yasir Khan",
|
|
23
|
+
"files": [
|
|
24
|
+
"dist/*.esm.js",
|
|
25
|
+
"dist/*.js",
|
|
26
|
+
"dist/*.d.ts",
|
|
27
|
+
"dist/*.css",
|
|
28
|
+
"README.md"
|
|
29
|
+
],
|
|
30
|
+
"main": "dist/index.js",
|
|
31
|
+
"module": "dist/index.esm.js",
|
|
32
|
+
"types": "dist/index.d.ts",
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"import": "./dist/index.esm.js",
|
|
36
|
+
"require": "./dist/index.js",
|
|
37
|
+
"default": "./dist/index.js"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"dev": "next dev",
|
|
42
|
+
"build": "next build",
|
|
43
|
+
"start": "next start",
|
|
44
|
+
"lint": "next lint",
|
|
45
|
+
"format-all-files": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"",
|
|
46
|
+
"build:rollup": "rollup -c --bundleConfigAsCjs",
|
|
47
|
+
"prepare": "npm run build:rollup",
|
|
48
|
+
"prepublishOnly": "npm run build:rollup",
|
|
49
|
+
"init:db": "node scripts/init-db.js",
|
|
50
|
+
"test:db": "node scripts/test-db-init.js",
|
|
51
|
+
"postbuild": "echo 'Build completed. Run npm run init:db if database initialization is needed.'"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@ag-ui/client": "^0.0.35",
|
|
55
|
+
"@ag-ui/core": "^0.0.35",
|
|
56
|
+
"@copilotkit/react-core": "^1.9.3",
|
|
57
|
+
"@copilotkit/react-ui": "^1.9.3",
|
|
58
|
+
"@copilotkit/runtime": "^1.9.3",
|
|
59
|
+
"@hello-pangea/dnd": "^17.0.0",
|
|
60
|
+
"@monaco-editor/react": "^4.6.0",
|
|
61
|
+
"@radix-ui/react-accordion": "^1.2.2",
|
|
62
|
+
"@radix-ui/react-avatar": "^1.1.2",
|
|
63
|
+
"@radix-ui/react-checkbox": "^1.1.3",
|
|
64
|
+
"@radix-ui/react-collapsible": "^1.1.2",
|
|
65
|
+
"@radix-ui/react-dialog": "^1.1.5",
|
|
66
|
+
"@radix-ui/react-dropdown-menu": "^2.1.5",
|
|
67
|
+
"@radix-ui/react-label": "^2.1.1",
|
|
68
|
+
"@radix-ui/react-radio-group": "^1.2.2",
|
|
69
|
+
"@radix-ui/react-scroll-area": "^1.2.2",
|
|
70
|
+
"@radix-ui/react-select": "^2.1.5",
|
|
71
|
+
"@radix-ui/react-slider": "^1.2.2",
|
|
72
|
+
"@radix-ui/react-slot": "^1.1.1",
|
|
73
|
+
"@radix-ui/react-switch": "^1.1.2",
|
|
74
|
+
"@radix-ui/react-tabs": "^1.1.2",
|
|
75
|
+
"@types/cors": "^2.8.17",
|
|
76
|
+
"@types/express": "^5.0.0",
|
|
77
|
+
"@types/pg": "^8.11.11",
|
|
78
|
+
"@types/react-beautiful-dnd": "^13.1.8",
|
|
79
|
+
"@types/react-datepicker": "^7.0.0",
|
|
80
|
+
"@types/react-grid-layout": "^1.3.5",
|
|
81
|
+
"chart.js": "^4.5.0",
|
|
82
|
+
"class-variance-authority": "^0.7.1",
|
|
83
|
+
"clsx": "^2.1.1",
|
|
84
|
+
"cors": "^2.8.5",
|
|
85
|
+
"dotenv": "^16.4.7",
|
|
86
|
+
"express": "^4.21.2",
|
|
87
|
+
"express-validator": "^7.2.1",
|
|
88
|
+
"framer-motion": "^12.0.6",
|
|
89
|
+
"lodash": "^4.17.21",
|
|
90
|
+
"lucide-react": "^0.474.0",
|
|
91
|
+
"next": "14.0.4",
|
|
92
|
+
"next-themes": "^0.4.4",
|
|
93
|
+
"pg": "^8.13.1",
|
|
94
|
+
"react": "^18",
|
|
95
|
+
"react-beautiful-dnd": "^13.1.1",
|
|
96
|
+
"react-chartjs-2": "^5.3.0",
|
|
97
|
+
"react-datepicker": "^7.6.0",
|
|
98
|
+
"react-dom": "^18",
|
|
99
|
+
"react-error-boundary": "^5.0.0",
|
|
100
|
+
"react-grid-layout": "^1.5.0",
|
|
101
|
+
"react-markdown": "^9.0.3",
|
|
102
|
+
"tailwind-merge": "^3.0.1",
|
|
103
|
+
"tailwindcss-animate": "^1.0.7",
|
|
104
|
+
"uuid": "^11.0.5",
|
|
105
|
+
"zod": "^3.24.1"
|
|
106
|
+
},
|
|
107
|
+
"devDependencies": {
|
|
108
|
+
"@eslint/eslintrc": "^3",
|
|
109
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
110
|
+
"@rollup/plugin-commonjs": "^28.0.1",
|
|
111
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
112
|
+
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
113
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
114
|
+
"@rollup/plugin-typescript": "^12.1.1",
|
|
115
|
+
"@types/lodash": "^4.17.15",
|
|
116
|
+
"@types/node": "^20",
|
|
117
|
+
"@types/react": "^18",
|
|
118
|
+
"@types/react-dom": "^18",
|
|
119
|
+
"autoprefixer": "^10.0.1",
|
|
120
|
+
"eslint": "^8.43.0",
|
|
121
|
+
"eslint-config-next": "15.1.6",
|
|
122
|
+
"eslint-config-node": "^4.1.0",
|
|
123
|
+
"eslint-config-prettier": "^8.10.0",
|
|
124
|
+
"eslint-plugin-next": "^0.0.0",
|
|
125
|
+
"eslint-plugin-node": "^11.1.0",
|
|
126
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
127
|
+
"eslint-plugin-react": "^7.32.2",
|
|
128
|
+
"postcss": "^8",
|
|
129
|
+
"prettier": "^2.8.8",
|
|
130
|
+
"rollup": "^4.27.3",
|
|
131
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
132
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
133
|
+
"rollup-plugin-visualizer": "^5.12.0",
|
|
134
|
+
"tailwindcss": "^3.3.0",
|
|
135
|
+
"typescript": "^5"
|
|
136
|
+
}
|
|
137
|
+
}
|