23 lines
427 B
JSON
23 lines
427 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",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.0.0",
|
|
"vitest": "^1.0.0"
|
|
},
|
|
"files": [
|
|
"dist/",
|
|
"src/",
|
|
"PROTOCOL.md"
|
|
]
|
|
}
|