@mbwilding/tool-early-bound-generator 0.0.2 → 0.0.4

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.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@mbwilding/tool-early-bound-generator",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@mbwilding/tool-early-bound-generator",
9
- "version": "0.0.2",
9
+ "version": "0.0.4",
10
10
  "license": "GPL-2.0",
11
11
  "dependencies": {
12
12
  "react": "^18.3.1",
@@ -19,6 +19,7 @@
19
19
  "@types/react-dom": "^18.3.0",
20
20
  "@vitejs/plugin-react": "^4.3.4",
21
21
  "happy-dom": "^20.9.0",
22
+ "prettier": "^3.8.3",
22
23
  "typescript": "^5.9.3",
23
24
  "vite": "^6.0.7",
24
25
  "vitest": "^4.1.7"
@@ -1878,6 +1879,22 @@
1878
1879
  "node": "^10 || ^12 || >=14"
1879
1880
  }
1880
1881
  },
1882
+ "node_modules/prettier": {
1883
+ "version": "3.8.3",
1884
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.8.3.tgz",
1885
+ "integrity": "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==",
1886
+ "dev": true,
1887
+ "license": "MIT",
1888
+ "bin": {
1889
+ "prettier": "bin/prettier.cjs"
1890
+ },
1891
+ "engines": {
1892
+ "node": ">=14"
1893
+ },
1894
+ "funding": {
1895
+ "url": "https://github.com/prettier/prettier?sponsor=1"
1896
+ }
1897
+ },
1881
1898
  "node_modules/react": {
1882
1899
  "version": "18.3.1",
1883
1900
  "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
package/package.json CHANGED
@@ -1,10 +1,8 @@
1
1
  {
2
2
  "name": "@mbwilding/tool-early-bound-generator",
3
3
  "displayName": "Early Bound Generator",
4
+ "version": "0.0.4",
4
5
  "description": "Generate strongly-typed C# early-bound classes for Dataverse entities, option sets, and messages",
5
- "main": "index.html",
6
- "version": "0.0.2",
7
- "license": "GPL-2.0",
8
6
  "icon": "icons/ebg.svg",
9
7
  "contributors": [
10
8
  {
@@ -12,27 +10,11 @@
12
10
  "url": "https://github.com/mbwilding"
13
11
  }
14
12
  ],
13
+ "license": "GPL-2.0",
15
14
  "configurations": {
16
15
  "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"
16
+ "readmeUrl": "https://raw.githubusercontent.com/mbwilding/PPTB-Tools/refs/heads/main/tools/early-bound-generator/README.md"
24
17
  },
25
- "bugs": {
26
- "url": "https://github.com/mbwilding/PPTB-Tools/issues"
27
- },
28
- "keywords": [
29
- "powerplatform",
30
- "dataverse",
31
- "toolbox",
32
- "early-bound",
33
- "code-gen",
34
- "source-gen"
35
- ],
36
18
  "type": "module",
37
19
  "scripts": {
38
20
  "build": "npm run typecheck && vite build",
@@ -41,12 +23,21 @@
41
23
  "test": "vitest run",
42
24
  "test:watch": "vitest",
43
25
  "validate": "pptb-validate",
44
- "finalize-package": "npm shrinkwrap"
26
+ "finalize-package": "npm shrinkwrap",
27
+ "pretty": "prettier --write ."
45
28
  },
46
29
  "files": [
47
30
  "dist",
48
31
  "npm-shrinkwrap.json"
49
32
  ],
33
+ "keywords": [
34
+ "powerplatform",
35
+ "dataverse",
36
+ "toolbox",
37
+ "early-bound",
38
+ "code-gen",
39
+ "source-gen"
40
+ ],
50
41
  "dependencies": {
51
42
  "react": "^18.3.1",
52
43
  "react-dom": "^18.3.1"
@@ -60,6 +51,7 @@
60
51
  "happy-dom": "^20.9.0",
61
52
  "typescript": "^5.9.3",
62
53
  "vite": "^6.0.7",
63
- "vitest": "^4.1.7"
54
+ "vitest": "^4.1.7",
55
+ "prettier": "^3.8.3"
64
56
  }
65
57
  }
package/index.html DELETED
@@ -1,12 +0,0 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8" />
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>Early Bound Generator</title>
7
- </head>
8
- <body>
9
- <div id="root"></div>
10
- <script type="module" src="/src/main.tsx"></script>
11
- </body>
12
- </html>
File without changes