rowboat/apps/x/packages/shared/package.json

20 lines
376 B
JSON
Raw Normal View History

2025-12-29 15:30:57 +05:30
{
2026-07-02 13:17:30 +05:30
"name": "@x/shared",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"dev": "tsc -w",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"zod": "^4.2.1"
},
"devDependencies": {
"vitest": "catalog:"
}
}