@linked365/pptb-bulk-data-studio 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 +18 -0
- package/dist/assets/index-WUc5oT36.js +88 -0
- package/dist/index.html +14 -0
- package/index.html +12 -0
- package/npm-shrinkwrap.json +7321 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@linked365/pptb-bulk-data-studio",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"displayName": "Bulk Data Studio",
|
|
5
|
+
"description": "Bulk Data Studio is a Power Platform ToolBox tool that allows users to perform bulk data operations in Microsoft Dataverse environments.",
|
|
6
|
+
"main": "index.html",
|
|
7
|
+
"author": "LinkeD365",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=18.0.0"
|
|
11
|
+
},
|
|
12
|
+
"contributors": [
|
|
13
|
+
"rappen"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsc && vite build",
|
|
17
|
+
"dev": "vite",
|
|
18
|
+
"preview": "vite preview",
|
|
19
|
+
"watch": "vite build --watch",
|
|
20
|
+
"finalize-package": "npm shrinkwrap"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@fluentui/react-components": "^9.72.9",
|
|
24
|
+
"@fluentui/react-icons": "^2.0.316",
|
|
25
|
+
"ag-grid-community": "^35.0.0",
|
|
26
|
+
"ag-grid-react": "^35.0.0",
|
|
27
|
+
"allotment": "^1.20.5",
|
|
28
|
+
"mobx": "^6.15.0",
|
|
29
|
+
"mobx-react": "^9.2.1",
|
|
30
|
+
"react": "^18.3.1",
|
|
31
|
+
"react-dom": "^18.3.1"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@pptb/types": "^1.0.1",
|
|
35
|
+
"@types/react": "^18.3.12",
|
|
36
|
+
"@types/react-dom": "^18.3.1",
|
|
37
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
38
|
+
"typescript": "^5.6.3",
|
|
39
|
+
"vite": "^7.1.11"
|
|
40
|
+
},
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"npm-shrinkwrap.json"
|
|
44
|
+
]
|
|
45
|
+
}
|