2026-08-15 18:37:30 +02:00
|
|
|
{
|
2026-08-16 11:03:25 +02:00
|
|
|
"name": "triggershell",
|
2026-08-15 18:37:30 +02:00
|
|
|
"version": "0.1.0",
|
2026-08-16 11:03:25 +02:00
|
|
|
"license": "MIT",
|
2026-08-15 18:37:30 +02:00
|
|
|
"type": "module",
|
2026-08-15 19:34:54 +02:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://dev.pivoine.art/valknar/triggershell.git",
|
|
|
|
|
"directory": "app"
|
|
|
|
|
},
|
2026-08-16 11:03:25 +02:00
|
|
|
"bin": {
|
|
|
|
|
"triggershell": "bin/triggershell.js"
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=20"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"bin",
|
|
|
|
|
"src",
|
|
|
|
|
"templates",
|
|
|
|
|
"drizzle",
|
|
|
|
|
".next",
|
|
|
|
|
"server.ts",
|
|
|
|
|
"next.config.ts",
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"tsconfig.json",
|
|
|
|
|
"LICENSE"
|
|
|
|
|
],
|
2026-08-15 18:37:30 +02:00
|
|
|
"scripts": {
|
|
|
|
|
"dev": "tsx watch server.ts",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "cross-env NODE_ENV=production tsx server.ts",
|
|
|
|
|
"lint": "eslint",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
|
"format": "prettier --write .",
|
2026-08-16 11:03:25 +02:00
|
|
|
"test": "tsx --test \"src/cli/**/*.test.ts\"",
|
2026-08-15 18:37:30 +02:00
|
|
|
"db:generate": "drizzle-kit generate",
|
2026-08-16 11:03:25 +02:00
|
|
|
"db:studio": "drizzle-kit studio",
|
|
|
|
|
"prepack": "rm -rf .next && next build && rm -rf .next/cache"
|
2026-08-15 18:37:30 +02:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@base-ui/react": "^1.7.0",
|
|
|
|
|
"@hookform/resolvers": "^5.8.0",
|
2026-08-16 11:03:25 +02:00
|
|
|
"@inquirer/prompts": "^8.5.2",
|
2026-08-15 20:29:03 +02:00
|
|
|
"@xterm/addon-fit": "^0.11.0",
|
|
|
|
|
"@xterm/xterm": "^6.0.0",
|
2026-08-15 18:37:30 +02:00
|
|
|
"argon2": "^0.45.1",
|
|
|
|
|
"better-sqlite3": "^13.0.3",
|
|
|
|
|
"class-variance-authority": "^0.7.1",
|
|
|
|
|
"clsx": "^2.1.1",
|
|
|
|
|
"cmdk": "^1.1.1",
|
2026-08-16 11:03:25 +02:00
|
|
|
"commander": "^15.0.0",
|
2026-08-15 18:37:30 +02:00
|
|
|
"drizzle-orm": "^0.45.2",
|
|
|
|
|
"execa": "^10.0.1",
|
|
|
|
|
"iron-session": "^8.0.4",
|
|
|
|
|
"lucide-react": "^1.31.0",
|
|
|
|
|
"next": "16.3.1",
|
|
|
|
|
"next-themes": "^0.4.6",
|
|
|
|
|
"react": "19.2.8",
|
|
|
|
|
"react-dom": "19.2.8",
|
|
|
|
|
"react-hook-form": "^7.85.0",
|
2026-08-16 00:54:15 +02:00
|
|
|
"react-markdown": "^10.1.0",
|
|
|
|
|
"remark-gfm": "^4.0.1",
|
2026-08-15 18:37:30 +02:00
|
|
|
"shadcn": "^4.18.0",
|
|
|
|
|
"sonner": "^2.0.8",
|
|
|
|
|
"tailwind-merge": "^3.6.0",
|
2026-08-16 11:03:25 +02:00
|
|
|
"tsx": "^4.23.12",
|
2026-08-15 18:37:30 +02:00
|
|
|
"tw-animate-css": "^1.4.0",
|
|
|
|
|
"ws": "^8.21.3",
|
|
|
|
|
"yaml": "^2.9.0",
|
|
|
|
|
"zod": "^4.4.3"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@tailwindcss/postcss": "^4",
|
2026-08-16 00:54:15 +02:00
|
|
|
"@tailwindcss/typography": "^0.5.20",
|
2026-08-15 18:37:30 +02:00
|
|
|
"@types/better-sqlite3": "^9.6.0",
|
|
|
|
|
"@types/node": "^20",
|
|
|
|
|
"@types/react": "^19",
|
|
|
|
|
"@types/react-dom": "^19",
|
|
|
|
|
"@types/ws": "^8.18.1",
|
|
|
|
|
"cross-env": "^10.1.0",
|
|
|
|
|
"drizzle-kit": "^0.31.10",
|
|
|
|
|
"eslint": "^9",
|
|
|
|
|
"eslint-config-next": "16.3.1",
|
|
|
|
|
"prettier": "^3.9.6",
|
|
|
|
|
"prettier-plugin-tailwindcss": "^0.8.1",
|
|
|
|
|
"tailwindcss": "^4",
|
|
|
|
|
"typescript": "^5"
|
|
|
|
|
},
|
|
|
|
|
"packageManager": "pnpm@11.21.0"
|
|
|
|
|
}
|