-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.59 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.59 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
{
"name": "@darkwheel/pptb-solution-explorer",
"version": "0.2.6",
"displayName": "Solution Explorer",
"description": "A comprehensive tool to explore and manage Dataverse solutions with detailed metadata for administrators",
"repository": {
"type": "git",
"url": "https://github.com/darkwheel/pptb-solutionExplorer.git"
},
"contributors": [
{
"name": "Christoph Schaffer",
"url": "https://github.com/darkwheel"
}
],
"keywords": [
"powerplatform",
"dataverse",
"toolbox",
"pptb",
"solution",
"management",
"deployment"
],
"license": "MIT",
"icon": "icons/icon.svg",
"files": [
"dist",
"npm-shrinkwrap.json",
"README.md",
"package.json"
],
"configurations": {
"repository": "https://github.com/darkwheel/pptb-solutionExplorer",
"website": "https://github.com/darkwheel/pptb-solutionExplorer",
"readmeUrl": "https://raw.githubusercontent.com/darkwheel/pptb-solutionExplorer/refs/heads/main/README.md"
},
"scripts": {
"build": "tsc && npm run copy-html && npm run copy-css && npm run copy-icon",
"copy-html": "shx cp src/index.html dist/",
"copy-css": "shx cp src/styles.css dist/",
"copy-icon": "shx mkdir -p dist/icons && shx cp icon/icon.svg dist/icons/",
"finalize-package": "npm shrinkwrap",
"watch": "tsc --watch"
},
"devDependencies": {
"@pptb/types": "^1.0.11",
"typescript": "^5.0.0",
"shx": "^0.4.0"
}
}