-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.39 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.39 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": "powerplatform-toolbox",
"version": "1.2.1",
"description": "A universal desktop app that contains multiple tools to ease the customization and configuration of Power Platform",
"main": "dist/main/index.js",
"scripts": {
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.renderer.json",
"build": "pnpm run typecheck && vite build",
"build:debug": "vite build --mode development",
"dev": "vite",
"watch": "vite build --watch",
"lint": "eslint src --ext .ts",
"start": "electron .",
"package": "pnpm run build && node ./buildScripts/package.js",
"package:win": "pnpm run build && node ./buildScripts/package.js --config=buildScripts/electron-builder-win.json",
"package:win-arm64": "pnpm run build && node ./buildScripts/package.js --config=buildScripts/electron-builder-win-arm64.json",
"package:mac": "pnpm run build && node ./buildScripts/package.js --config=buildScripts/electron-builder-mac.json",
"package:linux": "pnpm run build && node ./buildScripts/package.js --config=buildScripts/electron-builder-linux.json",
"version": "auto-changelog -p && git add CHANGELOG.md",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"packageManager": "pnpm@10.18.3",
"keywords": [
"powerplatform",
"dataverse",
"electron",
"toolbox",
"powerplatformtoolbox",
"pptb",
"powerapps"
],
"author": "Power Platform ToolBox",
"license": "GPL-3.0",
"devDependencies": {
"@electron/notarize": "^3.1.0",
"@types/node": "^20.19.21",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"all-contributors-cli": "^6.20.0",
"auto-changelog": "^2.3.0",
"electron": "^28.0.0",
"electron-builder": "^24.9.0",
"eslint": "^8.54.0",
"rollup-plugin-visualizer": "^6.0.5",
"sass": "^1.93.2",
"typescript": "^5.3.0",
"vite": "^7.1.10",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6"
},
"dependencies": {
"@azure/msal-node": "^3.8.0",
"@fluentui/svg-icons": "^1.1.312",
"@fluentui/tokens": "^1.0.0-alpha.22",
"@supabase/supabase-js": "^2.84.0",
"@types/uuid": "^10.0.0",
"ansi-to-html": "^0.7.2",
"electron-store": "^8.1.0",
"electron-updater": "^6.6.2",
"marked": "17.0.3",
"uuid": "^13.0.0"
},
"build": {
"extends": null
}
}