-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.81 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.81 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
59
60
61
62
63
{
"name": "edencoder.simulation",
"version": "1.0.0",
"description": "A simulation engine for AI agent scenarios, built with Phaser 3 and React.",
"author": "Eden Encoder",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite --host --port 5173",
"build": "npm run clean && vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:tsc": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@tailwindcss/postcss": "^4.1.4",
"@vitejs/plugin-react": "^4.6.0",
"ai": "^4.3.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"easystarjs": "^0.4.4",
"lucide-react": "^0.503.0",
"phaser": "3.90.0",
"phaser-jsx": "0.13.6",
"postcss": "^8.5.3",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tailwind-merge": "^3.3.0",
"tailwindcss": "^4.1.10",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.25.67",
"zustand": "^5.0.5"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@eslint/compat": "1.3.0",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.29.0",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"eslint": "9.29.0",
"eslint-plugin-prettier": "5.5.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"prettier": "3.5.3",
"typescript": "5.8.3",
"typescript-eslint": "8.34.1",
"vite": "6.3.5",
"vite-plugin-html": "3.2.2"
}
}