-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@power-maverick/tool-data-migrator",
"displayName": "Data Migrator",
"version": "1.0.15",
"description": "Migrate data from one Dataverse environment to another with auto-mapping and smart operations",
"icon": "icons/dataMigrator.svg",
"contributors": [
{
"name": "Power Maverick",
"url": "https://github.com/Power-Maverick"
}
],
"license": "GPL-2.0",
"configurations": {
"repository": "https://github.com/Power-Maverick/PPTB-Tools/tree/main/tools/data-migrator",
"readmeUrl": "https://raw.githubusercontent.com/Power-Maverick/PPTB-Tools/refs/heads/main/tools/data-migrator/README.md"
},
"features": {
"multiConnection": "required"
},
"type": "module",
"scripts": {
"build": "npm run typecheck && vite build",
"typecheck": "tsc --noEmit",
"dev": "vite",
"preview": "vite preview",
"finalize-package": "npm shrinkwrap",
"version-stable": "npm version patch --no-git-tag-version",
"publish-package": "npm run build && npm run version-stable && npm publish --access public"
},
"files": [
"dist",
"npm-shrinkwrap.json",
"pptb.config.json"
],
"keywords": [
"dataverse",
"migration",
"data-transfer",
"auto-mapping",
"power-platform",
"pptb",
"toolbox"
],
"author": "Power Maverick",
"dependencies": {
"@fluentui/react-components": "^9.56.2",
"@fluentui/react-icons": "^2.0.264",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@pptb/types": "^1.2.3-beta.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.9.3",
"vite": "^6.0.7"
}
}