This repository was archived by the owner on Dec 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.48 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.48 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
{
"name": "kingdomcomemap-helper",
"description": "Kingdom Come: Deliverance Map Helper",
"version": "2025.02.02",
"author": {
"name": "Vladislav Romanovsky",
"email": "frost.by@gmail.com"
},
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"format": "prettier -w ./",
"analize": "cross-env npm_config_report=true npm run build",
"build": "webpack --config config/webpack.config.prod.cjs",
"dev": "webpack --config config/webpack.config.dev.cjs",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/FrostBy/kingdomcomemap-tracker"
},
"private": true,
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"prettier --ignore-path ./.prettierignore --write "
]
},
"devDependencies": {
"@types/jquery": "^3.5.32",
"@types/leaflet": "^1.3.1",
"@types/node": "^20.17.1",
"@types/tampermonkey": "^5.0.3",
"browserslist": "^4.24.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"husky": "^9.1.6",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"userscript-metadata-webpack-plugin": "^0.4.0",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-livereload-plugin": "^3.0.2",
"webpack-merge": "^6.0.1",
"webpack-sources": "^3.2.3"
}
}