Files
Yonexus.Protocol/package.json

24 lines
456 B
JSON

{
"name": "yonexus-protocol",
"version": "0.1.0",
"description": "Yonexus shared communication protocol",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"files": [
"dist/",
"src/",
"PROTOCOL.md"
]
}