gaza/package.json
Ubuntu fbcc342c5f 定义标准协议 TypeScript 数据模型
Co-authored-by: multica-agent <github@multica.ai>
2026-08-03 19:05:26 +00:00

29 lines
632 B
JSON

{
"name": "@gaza/protocol",
"version": "0.1.0",
"private": true,
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./fixtures": {
"types": "./dist/fixtures/index.d.ts",
"import": "./dist/fixtures/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && tsc -p tsconfig.json && node --test dist-tests/test/**/*.test.js"
},
"devDependencies": {
"@types/node": "22.17.2",
"typescript": "5.9.2"
}
}