{
  "name": "@aptre/protobuf-es-lite",
  "description": "Lightweight Protobuf codegen for TypeScript and JavaScript.",
  "version": "1.0.2",
  "license": "Apache-2.0",
  "repository": {
    "url": "git+ssh://git@github.com/aperturerobotics/protobuf-es-lite.git"
  },
  "files": [
    ".ignore",
    "LICENSE",
    "README.md",
    "bin/protoc-gen-es-lite",
    "example/example.proto",
    "example/example.pb.ts",
    "tsconfig.base.json",
    "tsconfig.json",
    "dist"
  ],
  "bin": {
    "protoc-gen-es-lite": "bin/protoc-gen-es-lite"
  },
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./descriptor-set": {
      "types": "./dist/descriptor-set.d.ts",
      "import": "./dist/descriptor-set.js",
      "require": "./dist/descriptor-set.js"
    },
    "./create-descriptor-set": {
      "types": "./dist/create-descriptor-set.d.ts",
      "import": "./dist/create-descriptor-set.js",
      "require": "./dist/create-descriptor-set.js"
    },
    "./protoplugin": {
      "types": "./dist/protoplugin/index.d.ts",
      "import": "./dist/protoplugin/index.js",
      "require": "./dist/protoplugin/index.js"
    },
    "./protoplugin/ecmascript": {
      "types": "./dist/protoplugin/ecmascript/index.d.ts",
      "import": "./dist/protoplugin/ecmascript/index.js",
      "require": "./dist/protoplugin/ecmascript/index.js"
    },
    "./google": {
      "types": "./dist/google/index.d.ts",
      "import": "./dist/google/index.js",
      "require": "./dist/google/index.js"
    },
    "./google/protobuf/type": {
      "types": "./dist/google/protobuf/type.pb.d.ts",
      "import": "./dist/google/protobuf/type.pb.js",
      "require": "./dist/google/protobuf/type.pb.js"
    },
    "./google/protobuf/timestamp": {
      "types": "./dist/google/protobuf/timestamp.pb.d.ts",
      "import": "./dist/google/protobuf/timestamp.pb.js",
      "require": "./dist/google/protobuf/timestamp.pb.js"
    },
    "./google/protobuf/duration": {
      "types": "./dist/google/protobuf/duration.pb.d.ts",
      "import": "./dist/google/protobuf/duration.pb.js",
      "require": "./dist/google/protobuf/duration.pb.js"
    },
    "./google/protobuf/any": {
      "types": "./dist/google/protobuf/any.pb.d.ts",
      "import": "./dist/google/protobuf/any.pb.js",
      "require": "./dist/google/protobuf/any.pb.js"
    },
    "./google/protobuf/empty": {
      "types": "./dist/google/protobuf/empty.pb.d.ts",
      "import": "./dist/google/protobuf/empty.pb.js",
      "require": "./dist/google/protobuf/empty.pb.js"
    },
    "./google/protobuf/wrappers": {
      "types": "./dist/google/protobuf/wrappers.pb.d.ts",
      "import": "./dist/google/protobuf/wrappers.pb.js",
      "require": "./dist/google/protobuf/wrappers.pb.js"
    },
    "./google/protobuf/struct": {
      "types": "./dist/google/protobuf/struct.pb.d.ts",
      "import": "./dist/google/protobuf/struct.pb.js",
      "require": "./dist/google/protobuf/struct.pb.js"
    },
    "./google/protobuf/api": {
      "types": "./dist/google/protobuf/api.pb.d.ts",
      "import": "./dist/google/protobuf/api.pb.js",
      "require": "./dist/google/protobuf/api.pb.js"
    },
    "./google/protobuf/source_context": {
      "types": "./dist/google/protobuf/source_context.pb.d.ts",
      "import": "./dist/google/protobuf/source_context.pb.js",
      "require": "./dist/google/protobuf/source_context.pb.js"
    }
  },
  "engines": {
    "node": ">=14"
  },
  "scripts": {
    "clean": "rimraf ./dist",
    "build": "npm run clean && tsc --project tsconfig.json --outDir ./dist",
    "typecheck": "tsc --noEmit --project tsconfig.json --outDir ./dist",
    "gen": "npm run build && npm run gen:wkt && npm run gen:example",
    "gen:wkt": "cd ./src && bash gen.bash",
    "gen:example": "bash gen.bash ./example/example.proto",
    "format": "prettier --write './src/**/(*.ts|*.tsx|*.html|*.css|*.scss)'",
    "precommit": "lint-staged",
    "test": "vitest run",
    "lint": "eslint ./",
    "release:version": "npm version patch -m \"release: v%s\" --no-git-tag-version",
    "release:version:minor": "npm version minor -m \"release: v%s\" --no-git-tag-version",
    "release:commit": "git reset && git add package.json && git commit -s -m \"release: v$(node -p \"require('./package.json').version\")\" && git tag v$(node -p \"require('./package.json').version\")",
    "release:publish": "git push && git push --tags",
    "release": "npm run release:version && npm run release:commit",
    "release:minor": "npm run release:version:minor && npm run release:commit",
    "prepare": "husky"
  },
  "preferUnplugged": true,
  "dependencies": {
    "@typescript/vfs": "^1.5.0",
    "lz-string": "^1.5.0"
  },
  "devDependencies": {
    "@types/node": "^25.0.0",
    "@eslint/js": "^10.0.0",
    "@typescript-eslint/eslint-plugin": "^8.55.0",
    "@typescript-eslint/parser": "^8.55.0",
    "eslint": "^10.0.0",
    "eslint-config-prettier": "^10.0.0",
    "eslint-plugin-unused-imports": "^4.4.1",
    "globals": "^17.0.0",
    "husky": "^9.1.7",
    "lint-staged": ">=15.2.5",
    "prettier": "^3.2.5",
    "rimraf": "^6.0.0",
    "typescript": "^5.4.5",
    "vitest": "^4.0.0"
  },
  "lint-staged": {
    "package.json": "prettier --write",
    "./src/**/(*.ts|*.tsx|*.html|*.css|*.scss)": "prettier --write"
  }
}
