25 lines
523 B
JSON
25 lines
523 B
JSON
{
|
|
"name": "@kerbal-rt/shared-types",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "TypeScript types shared between API, hub, and live-map",
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "echo 'no linter yet'",
|
|
"test": "echo 'no tests yet'",
|
|
"build": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.6.2"
|
|
}
|
|
}
|