@mbwilding/tool-early-bound-generator 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,58 @@
1
+ {
2
+ "name": "@mbwilding/tool-early-bound-generator",
3
+ "displayName": "Early Bound Generator",
4
+ "description": "Generate strongly-typed C# early-bound classes for Dataverse entities, option sets, and messages",
5
+ "main": "index.html",
6
+ "version": "0.0.1",
7
+ "license": "GPL-2.0",
8
+ "icon": "icons/ebg.svg",
9
+ "contributors": [
10
+ {
11
+ "name": "Matthew Wilding",
12
+ "url": "https://github.com/mbwilding"
13
+ }
14
+ ],
15
+ "configurations": {
16
+ "repository": "https://github.com/mbwilding/PPTB-Tools/tree/main/tools/early-bound-generator",
17
+ "readmeUrl": "https://raw.githubusercontent.com/mbwilding/PPTB-Tools/refs/heads/main/tools/early-bound-generator/README.md",
18
+ "website": "https://github.com/mbwilding/PPTB-Tools/tree/main/tools/early-bound-generator"
19
+ },
20
+ "homepage": "https://github.com/mbwilding/PPTB-Tools/tree/main/tools/early-bound-generator",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/mbwilding/PPTB-Tools.git"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/mbwilding/PPTB-Tools/issues"
27
+ },
28
+ "keywords": ["powerplatform", "dataverse", "toolbox", "early-bound", "code-gen", "source-gen"],
29
+ "type": "module",
30
+ "scripts": {
31
+ "build": "npm run typecheck && vite build",
32
+ "typecheck": "tsc --noEmit -p tsconfig.test.json",
33
+ "dev": "vite",
34
+ "test": "vitest run",
35
+ "test:watch": "vitest",
36
+ "validate": "pptb-validate",
37
+ "finalize-package": "npm shrinkwrap"
38
+ },
39
+ "files": [
40
+ "dist",
41
+ "npm-shrinkwrap.json"
42
+ ],
43
+ "dependencies": {
44
+ "react": "^18.3.1",
45
+ "react-dom": "^18.3.1"
46
+ },
47
+ "devDependencies": {
48
+ "@pptb/types": "^1.0.20",
49
+ "@types/node": "^20.19.21",
50
+ "@types/react": "^18.3.1",
51
+ "@types/react-dom": "^18.3.0",
52
+ "@vitejs/plugin-react": "^4.3.4",
53
+ "happy-dom": "^20.9.0",
54
+ "typescript": "^5.9.3",
55
+ "vite": "^6.0.7",
56
+ "vitest": "^4.1.7"
57
+ }
58
+ }