@cyco77/pptb-usersettings-utiliy 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/LICENSE +674 -0
- package/README.md +246 -0
- package/dist/assets/index-Dp1t9EPU.js +28 -0
- package/dist/assets/usersettings-utility_small-cwtNWFYQ.png +0 -0
- package/dist/index.html +14 -0
- package/index.html +12 -0
- package/npm-shrinkwrap.json +3552 -0
- package/package.json +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cyco77/pptb-usersettings-utiliy",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"displayName": "User Settings Utility",
|
|
5
|
+
"description": "Your tool to update user settings in Dataverse",
|
|
6
|
+
"main": "index.html",
|
|
7
|
+
"author": "Lars Hildebrandt",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=18.0.0"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsc && vite build",
|
|
14
|
+
"dev": "vite",
|
|
15
|
+
"watch": "vite build --watch",
|
|
16
|
+
"preview": "vite preview",
|
|
17
|
+
"finalize-package": "npm shrinkwrap"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@fluentui/react-components": "^9.72.7",
|
|
21
|
+
"@fluentui/react-icons": "^2.0.314",
|
|
22
|
+
"react": "^18.3.1",
|
|
23
|
+
"react-dom": "^18.3.1"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@pptb/types": "^1.0.1",
|
|
27
|
+
"@types/react": "^18.3.12",
|
|
28
|
+
"@types/react-dom": "^18.3.1",
|
|
29
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
30
|
+
"typescript": "^5.6.3",
|
|
31
|
+
"vite": "^7.1.11"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist",
|
|
35
|
+
"npm-shrinkwrap.json"
|
|
36
|
+
]
|
|
37
|
+
}
|