-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.17 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "wa-map-optimizer-vite",
"version": "1.1.29",
"description": "Vite plugin for WA Map Optimizer",
"main": "dist/index.js",
"author": "Nolway (Alexis Faizeau)",
"license": "AGPL-3.0",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"type": "module",
"scripts": {
"prepare": "husky install",
"build": "tsc --build",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.10.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.8.8",
"typescript": "^4.9.5",
"vite": "^4.5.1"
},
"dependencies": {
"@workadventure/tiled-map-type-guard": "^2.1.2",
"wa-map-optimizer": "^1.4.8"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{js,ts,json}": [
"prettier --write"
]
}
}