-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 928 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 928 Bytes
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
{
"name": "backwards",
"version": "0.10.0",
"type": "module",
"author": "Jeremie CORPINOT",
"description": "A turn based game system built with Phaser",
"license": "MIT",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "ava",
"test:watch": "ava --watch"
},
"dependencies": {
"pathfinding": "0.4.18",
"phaser": "3.24.1"
},
"devDependencies": {
"@types/pathfinding": "0.0.4",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"ava": "^6.4.1",
"eslint": "^9.31.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vite": "^5.4.19"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
}
}