36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
"name": "@ag-ui/proto",
|
|
"author": "Markus Ecker <markus.ecker@gmail.com>",
|
|
"version": "0.0.42",
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"dependencies": {
|
|
"@bufbuild/protobuf": "^2.2.5",
|
|
"@protobuf-ts/protoc": "^2.11.1",
|
|
"@ag-ui/core": "0.0.42"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.7.0",
|
|
"@types/jest": "^29.5.14",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.2",
|
|
"ts-proto": "^2.7.0",
|
|
"tsup": "^8.0.2",
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"lint": "eslint \"src/**/*.ts*\"",
|
|
"clean": "rm -rf dist .turbo node_modules",
|
|
"test": "jest",
|
|
"generate": "mkdir -p ./src/generated && npx protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./src/generated --ts_proto_opt=esModuleInterop=true,outputJsonMethods=false,outputClientImpl=false -I ./src/proto ./src/proto/*.proto",
|
|
"link:global": "pnpm link --global",
|
|
"unlink:global": "pnpm unlink --global"
|
|
}
|
|
} |