protobufs/packages/ts/package.json

33 lines
675 B
JSON
Raw Permalink Normal View History

2025-09-05 21:24:18 -04:00
{
2025-09-05 21:28:30 -04:00
"name": "@meshtastic/protobufs",
"description": "Protobuf definitions for the Meshtastic project",
2025-09-05 21:24:18 -04:00
"version": "__PACKAGE_VERSION__",
"homepage": "https://github.com/meshtastic/protobufs",
"license": "GPLV3",
"publishConfig": {
"access": "public"
},
"type": "module",
2025-09-11 09:32:34 -04:00
"main": "./dist/mod.js",
"module": "./dist/mod.js",
"types": "./dist/mod.d.ts",
2025-09-05 21:24:18 -04:00
"dependencies": {
"@bufbuild/protobuf": "^2.2.3"
},
"devDependencies": {
"tsdown": "^0.13.4",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsdown"
},
"tsdown": {
"entry": "mod.ts",
"dts": true,
"format": [
"esm"
],
"splitting": false
}
}