Files
thinkloom-openai-hackathon/package.json
T
2026-07-17 07:58:10 -07:00

39 lines
1.0 KiB
JSON

{
"name": "thinkloom",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": { "node": ">=22.13.0" },
"scripts": {
"dev": "vite --port 1420 --strictPort",
"build": "npm run typecheck && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests vite.config.ts",
"test": "npm run typecheck && node tests/native-app.test.mjs",
"tauri": "tauri"
},
"dependencies": {
"@tiptap/markdown": "^3.28.0",
"@tiptap/pm": "^3.28.0",
"@tiptap/react": "^3.28.0",
"@tiptap/starter-kit": "^3.28.0",
"react": "19.2.6",
"react-dom": "19.2.6"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@tauri-apps/cli": "^2.11.4",
"@types/node": "22.19.19",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.2",
"eslint": "9.39.4",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "14.0.0",
"typescript": "5.9.3",
"typescript-eslint": "8.59.3",
"vite": "8.0.13"
}
}