-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
{
"name": "wa-map-optimizer",
"version": "1.4.8",
"description": "WorkAdventure Map Optimizer! Does your map need a diet?",
"main": "./dist/index.js",
"repository": "https://github.com/nolway/wa-map-optimizer",
"author": "Nolway (Alexis Faizeau)",
"license": "AGPL-3.0",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"type": "module",
"scripts": {
"prepare": "husky install",
"build": "tsc --build",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"dev": "node --loader ts-node/esm --experimental-specifier-resolution=node ./example/index.ts"
},
"dependencies": {
"@workadventure/tiled-map-type-guard": "^2.1.1",
"imagemin": "^8.0.1",
"imagemin-pngquant": "^9.0.2",
"pngjs": "^6.0.0",
"sharp": "^0.30.4",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/imagemin": "^8.0.1",
"@types/node": "^18.11.18",
"@types/pngjs": "^6.0.1",
"@types/sharp": "^0.30.2",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{js,ts,json}": [
"prettier --write"
]
}
}