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",
|
2026-04-20 09:20:50 +00:00
|
|
|
"seed": "tsx ./src/seed.ts",
|
2026-05-12 10:54:40 +00:00
|
|
|
"remove-chat": "tsx ./src/remove-chat.ts",
|
2026-05-18 07:18:15 +00:00
|
|
|
"disable-deprecated-apps": "tsx ./src/disable-deprecated-apps.ts",
|
2026-05-18 13:52:42 +00:00
|
|
|
"update-app-colors": "tsx ./src/update-app-colors.ts",
|
2026-05-14 08:08:02 +00:00
|
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
|
|
|
"test": "node --test 'tests/**/*.test.mjs'"
|
2026-04-18 02:00:09 +00:00
|
|
|
},
|
2026-04-20 09:20:50 +00:00
|
|
|
"dependencies": {
|
2026-04-20 10:02:09 +00:00
|
|
|
"@workspace/db": "workspace:*",
|
|
|
|
|
"drizzle-orm": "catalog:"
|
2026-04-20 09:20:50 +00:00
|
|
|
},
|
2026-04-18 02:00:09 +00:00
|
|
|
"devDependencies": {
|
2026-04-20 09:20:50 +00:00
|
|
|
"@types/bcryptjs": "^3.0.0",
|
2026-04-18 02:00:09 +00:00
|
|
|
"@types/node": "catalog:",
|
2026-04-20 09:20:50 +00:00
|
|
|
"bcryptjs": "^3.0.3",
|
2026-04-18 02:00:09 +00:00
|
|
|
"tsx": "catalog:"
|
|
|
|
|
}
|
|
|
|
|
}
|