unbake-proto 1.1.1 → 1.1.2

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/README.md CHANGED
@@ -30,3 +30,7 @@ npx unbake-proto baked.pb > unbaked.proto
30
30
  ```
31
31
 
32
32
  there should be no difference between `original.proto` and `unbaked.proto` !
33
+
34
+ ## development
35
+
36
+ requires `pnpm`
package/dist/index.mjs CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unbake-proto",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Decompile baked protobuf descriptors into human-readable working .proto",
5
5
  "keywords": [
6
6
  "protobuf",
@@ -14,13 +14,13 @@
14
14
  "author": "ph0ryn",
15
15
  "type": "module",
16
16
  "exports": {
17
- ".": "./dist/index.js",
17
+ ".": "./dist/index.mjs",
18
18
  "./package.json": "./package.json"
19
19
  },
20
- "main": "./dist/index.js",
21
- "module": "./dist/index.js",
20
+ "main": "./dist/index.mjs",
21
+ "module": "./dist/index.mjs",
22
22
  "bin": {
23
- "unbake-proto": "dist/index.js"
23
+ "unbake-proto": "dist/index.mjs"
24
24
  },
25
25
  "files": [
26
26
  "dist"