Files
image-studio/package.json

36 lines
937 B
JSON

{
"name": "image-studio",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --hot index.ts",
"start": "NODE_ENV=production bun index.ts",
"build": "bun run build.ts",
"lint": "eslint .",
"test": "bun test",
"typecheck": "bunx tsc --noEmit",
"check": "bun run typecheck && bun run test && bun run lint && bun run build"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-slot": "^1.2.3",
"bun-plugin-tailwind": "^0.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^19",
"react-dom": "^19",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^10.6.0",
"tailwindcss": "^4.1.11",
"typescript-eslint": "^8.62.1"
}
}