unbake-proto 1.0.2 → 1.0.3

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.
Files changed (1) hide show
  1. package/package.json +9 -32
package/package.json CHANGED
@@ -1,47 +1,24 @@
1
1
  {
2
2
  "name": "unbake-proto",
3
- "module": "src/index.ts",
4
- "version": "1.0.2",
3
+ "version": "1.0.3",
5
4
  "author": "ph0ryn",
5
+ "description": "Decompile baked protobuf descriptors into human-readable working .proto",
6
6
  "type": "module",
7
7
  "license": "MIT",
8
8
  "bin": {
9
9
  "unbake-proto": "dist/index.js"
10
10
  },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/ph0ryn/unbake-proto.git"
14
+ },
11
15
  "files": [
12
- "dist",
13
- "README.md",
14
- "LICENSE"
16
+ "dist"
15
17
  ],
16
18
  "keywords": [
17
19
  "protobuf",
18
20
  "protoc"
19
21
  ],
20
- "scripts": {
21
- "lint": "bunx oxlint --type-aware",
22
- "format": "bunx oxlint --type-aware --fix . ; bunx oxfmt . ; bunx eslint --fix .",
23
- "check": "bunx tsc --noEmit",
24
- "precommit": "bun run check && bun run format && bun run build",
25
- "unbake": "bun run src/index.ts",
26
- "test": "protoc --descriptor_set_out=test/schema.pb --include_imports test/schema.proto && bun run unbake test/schema.pb",
27
- "test2": "protoc --descriptor_set_out=test/descriptor.pb --include_imports descriptor.proto && bun run unbake test/descriptor.pb",
28
- "test3": "protoc --descriptor_set_out=test/comprehensive.pb --include_imports test/comprehensive.proto && bun run unbake test/comprehensive.pb"
29
- },
30
- "devDependencies": {
31
- "@stylistic/eslint-plugin": "^5.6.1",
32
- "@types/bun": "latest",
33
- "eslint": "^9.39.1",
34
- "eslint-plugin-import-x": "^4.16.1",
35
- "eslint-plugin-oxlint": "^1.32.0",
36
- "oxfmt": "^0.16.0",
37
- "oxlint": "^1.32.0",
38
- "oxlint-tsgolint": "^0.9.1",
39
- "typescript-eslint": "^8.49.0"
40
- },
41
- "peerDependencies": {
42
- "typescript": "^5"
43
- },
44
- "dependencies": {
45
- "@bufbuild/protobuf": "^2.10.2"
46
- }
22
+ "main": "dist/index.js",
23
+ "module": "dist/index.js"
47
24
  }