-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.97 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.97 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": "phaser-rpg",
"version": "1.0.0-alpha",
"description": "A template for building Phaser RPG games.",
"author": "Mark <mark@remarkablemark.org>",
"type": "module",
"scripts": {
"build": "vite build",
"bundle": "scripts/bundle.sh",
"clean": "rm -rf dist",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:tsc": "tsc --noEmit",
"prepare": "husky",
"preview": "vite preview",
"start": "vite --open"
},
"homepage": "https://remarkablegames.org/phaser-rpg/",
"dependencies": {
"@langchain/core": "^0.3.42",
"@langchain/langgraph": "^0.2.55",
"@langchain/openai": "^0.4.4",
"@types/react-dom": "^19.0.4",
"d3": "^7.9.0",
"marked": "^15.0.7",
"openai": "^4.90.0",
"pathfinding": "0.4.18",
"phaser": "3.87.0",
"phaser-jsx": "0.13.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-draggable": "^4.5.0",
"vega": "^6.1.2",
"vega-embed": "^7.0.2",
"vega-lite": "^6.1.0"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/compat": "1.2.5",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.19.0",
"@types/d3": "^7.4.3",
"@types/gtag.js": "0.0.20",
"@types/papaparse": "^5.3.15",
"@types/pathfinding": "^0.0.9",
"@types/react": "^19.0.10",
"@typescript-eslint/eslint-plugin": "8.22.0",
"@typescript-eslint/parser": "8.22.0",
"axios": "1.7.9",
"eslint": "9.19.0",
"eslint-plugin-prettier": "5.2.3",
"eslint-plugin-simple-import-sort": "12.1.1",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.4.2",
"typescript": "5.7.3",
"vite": "6.0.11",
"vite-plugin-html": "3.2.2"
},
"private": true,
"license": "MIT"
}