-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
31 lines (31 loc) · 858 Bytes
/
package.json
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
{
"name": "pixi-game-ui",
"version": "1.0.0",
"type": "module",
"description": "",
"author": {
"name": "CyberDex",
"url": "https://github.com/CyberDex"
},
"scripts": {
"start": "vite --open",
"build": "tsc && vite build",
"preview": "npm run build && vite preview --open",
"lint": "eslint --ext .js,.ts,.tsx src",
"lint:fix": "eslint --ext .js,.ts,.tsx src --fix",
"format": "prettier --write src/**/*.{ts}"
},
"dependencies": {
"pixi.js": "^8.3.3",
"@pixi/layout": "^2.0.1",
"@pixi/ui": "^2.1.3",
"gsap": "^3.11.4"
},
"devDependencies": {
"eslint": "^8.32.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.8.3",
"typescript": "^4.9.3",
"vite": "^4.0.0"
}
}