-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.82 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.82 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
64
65
66
67
68
{
"name": "dream-e",
"version": "1.0.0",
"description": "A visual node editor for creating interactive text adventures and RPGs",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.0",
"@xyflow/react": "^12.0.0",
"zustand": "^4.4.7",
"dexie": "^3.2.4",
"dexie-react-hooks": "^1.1.6",
"howler": "^2.2.4",
"jszip": "^3.10.1",
"file-saver": "^2.0.5",
"lucide-react": "^0.294.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"uuid": "^9.0.1",
"immer": "^10.0.3",
"@anthropic-ai/sdk": "^0.78.0",
"sql.js": "^1.10.0",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^6.9.0",
"google-auth-library": "^9.0.0",
"express": "^4.18.0",
"cookie-parser": "^1.4.6"
},
"devDependencies": {
"@types/prop-types": "^15.7.11",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/howler": "^2.2.11",
"@types/file-saver": "^2.0.7",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"keywords": [
"dream-e",
"text-adventure",
"rpg",
"node-editor",
"visual-novel",
"game-engine"
],
"author": "Dream-E Team",
"license": "MIT"
}