forked from orangekame3/mirrormate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "mirrormate",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@mediapipe/tasks-vision": "^0.10.22-rc.20250304",
"@types/three": "^0.182.0",
"better-sqlite3": "^12.5.0",
"canvas-confetti": "^1.9.4",
"drizzle-orm": "^0.45.1",
"googleapis": "^169.0.0",
"js-yaml": "^4.1.1",
"mirrormate-clock-plugin": "github:orangekame3/mirrormate-clock-plugin",
"next": "^15.1.0",
"next-intl": "^4.7.0",
"openai": "^4.73.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"three": "^0.182.0",
"three-stdlib": "^2.36.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@types/better-sqlite3": "^7.6.13",
"@types/canvas-confetti": "^1.9.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.31.8",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.0",
"mermaid": "^11.12.2",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^4.0.16"
}
}