-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.89 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.89 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
61
62
63
64
65
66
67
{
"name": "@cyco77/pptb-plugin-documentation-generator",
"version": "0.4.1",
"displayName": "Plugin Documentation Generator",
"description": "A Power Platform Toolbox tool to show plugin details and generate documentation.",
"main": "index.html",
"author": "Lars Hildebrandt",
"contributors": [
{
"name": "Lars Hildebrandt",
"url": "https://github.com/cyco77"
}
],
"configurations": {
"repository": "https://github.com/cyco77/pptb-plugin-documentation-generator",
"website": "https://github.com/cyco77/pptb-plugin-documentation-generator",
"readmeUrl": "https://raw.githubusercontent.com/cyco77/pptb-plugin-documentation-generator/refs/heads/main/README.md"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cyco77/pptb-plugin-documentation-generator.git"
},
"bugs": {
"url": "https://github.com/cyco77/pptb-plugin-documentation-generator/issues"
},
"homepage": "https://github.com/cyco77/pptb-plugin-documentation-generator#readme",
"keywords": [
"power-platform",
"dynamics-365",
"plugin",
"documentation",
"pptb",
"toolbox"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"watch": "vite build --watch",
"preview": "vite preview",
"finalize-package": "npm shrinkwrap",
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major",
"release:publish": "npm publish"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@fluentui/react-components": "^9.72.7"
},
"devDependencies": {
"@pptb/types": "^1.2.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.6.3",
"vite": "^7.1.11"
},
"files": [
"dist",
"npm-shrinkwrap.json"
]
}