{ "name": "@protobuf-ts/runtime", "version": "2.11.1", "description": "Runtime library for code generated by the protoc plugin \"protobuf-ts\"", "scripts": { "clean": "rm -rf build/* *.descriptorset *.codegenreq", "build": "npm run build:es6 && npm run build:cjs", "build:es6": "tsc --project tsconfig.build.json --module es2015 --outDir build/es2015", "build:cjs": "tsc --project tsconfig.build.json --module commonjs --outDir build/commonjs --declaration --declarationDir build/types", "test": "ts-node --project tsconfig.test.json ../../node_modules/.bin/jasmine --helper=spec/jasmine-reporter.ts spec/*.spec.ts" }, "license": "(Apache-2.0 AND BSD-3-Clause)", "author": "Timo Stamm ", "homepage": "https://github.com/timostamm/protobuf-ts", "keywords": [ "Protocol Buffers", "protobuf", "TypeScript", "bigint", "Reflection" ], "repository": { "type": "git", "url": "https://github.com/timostamm/protobuf-ts.git", "directory": "packages/runtime" }, "publishConfig": { "access": "public" }, "main": "./build/commonjs/index.js", "module": "./build/es2015/index.js", "typings": "./build/types/index.d.ts", "sideEffects": false, "devDependencies": { "@types/jasmine": "^3.5.10", "jasmine": "^3.5.0", "jasmine-spec-reporter": "^5.0.2", "ts-node": "^8.10.2", "tslib": ">=1.6.1", "typescript": ">=3.8.3 <4" } }