Files
mlugg 048396053b npm update
Notably, this gets us `@actions/github` 6.0.1, which is necessary for
`github.context.runAttempt` (so I have also updated `package.json`
accordingly). On that note... great job following semver, GitHub!
Between this and the non-breaking major version change on
`@actions/cache`, I'm starting to feel like nobody on the Actions team
understands how software versioning works.
2025-06-29 17:06:44 +01:00

43 lines
1.4 KiB
JSON

{
"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 <[email protected]>",
"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"
}
}