@power-maverick/tool-security-role-comparator 0.0.1

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,56 @@
1
+ {
2
+ "name": "@power-maverick/tool-security-role-comparator",
3
+ "displayName": "Security Role Comparator",
4
+ "version": "0.0.1",
5
+ "description": "Compare one security role against up to 5 other roles in the same Dataverse environment",
6
+ "icon": "icons/securityRoleComparator.svg",
7
+ "contributors": [
8
+ {
9
+ "name": "Power Maverick",
10
+ "url": "https://github.com/Power-Maverick"
11
+ }
12
+ ],
13
+ "license": "GPL-2.0",
14
+ "configurations": {
15
+ "repository": "https://github.com/Power-Maverick/PPTB-Tools/tree/main/tools/security-role-comparator",
16
+ "readmeUrl": "https://raw.githubusercontent.com/Power-Maverick/PPTB-Tools/refs/heads/main/tools/security-role-comparator/README.md"
17
+ },
18
+ "type": "module",
19
+ "scripts": {
20
+ "build": "npm run typecheck && vite build",
21
+ "typecheck": "tsc --noEmit",
22
+ "dev": "vite",
23
+ "preview": "vite preview",
24
+ "finalize-package": "npm shrinkwrap",
25
+ "publish-package": "npm publish --access public"
26
+ },
27
+ "files": [
28
+ "dist",
29
+ "npm-shrinkwrap.json"
30
+ ],
31
+ "keywords": [
32
+ "dataverse",
33
+ "security",
34
+ "role",
35
+ "comparator",
36
+ "privileges",
37
+ "power-platform",
38
+ "pptb",
39
+ "toolbox"
40
+ ],
41
+ "author": "Power Maverick",
42
+ "dependencies": {
43
+ "@fluentui/react-components": "^9.56.2",
44
+ "@fluentui/react-icons": "^2.0.264",
45
+ "react": "^18.3.1",
46
+ "react-dom": "^18.3.1"
47
+ },
48
+ "devDependencies": {
49
+ "@pptb/types": "^1.0.20",
50
+ "@types/react": "^18.3.1",
51
+ "@types/react-dom": "^18.3.0",
52
+ "@vitejs/plugin-react": "^4.3.4",
53
+ "typescript": "^5.9.3",
54
+ "vite": "^6.0.7"
55
+ }
56
+ }