Files
TX/scripts/package.json
T

24 lines
560 B
JSON
Raw Normal View History

2026-04-18 02:00:09 +00:00
{
"name": "@workspace/scripts",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"hello": "tsx ./src/hello.ts",
"seed": "tsx ./src/seed.ts",
2026-05-12 10:54:40 +00:00
"remove-chat": "tsx ./src/remove-chat.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --test 'tests/**/*.test.mjs'"
2026-04-18 02:00:09 +00:00
},
"dependencies": {
"@workspace/db": "workspace:*",
"drizzle-orm": "catalog:"
},
2026-04-18 02:00:09 +00:00
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
2026-04-18 02:00:09 +00:00
"@types/node": "catalog:",
"bcryptjs": "^3.0.3",
2026-04-18 02:00:09 +00:00
"tsx": "catalog:"
}
}