forked from ETS2LA/maps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1001 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1001 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
41
{
"name": "maps",
"version": "0.0.0",
"private": true,
"license": "GPL-3.0-or-later",
"workspaces": [
"packages/apis/*",
"packages/apps/*",
"packages/clis/*",
"packages/libs/*"
],
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.4.2",
"vitest": "^2.1.8"
},
"scripts": {
"prepare": "husky install",
"lint": "npx tsc -b && npx prettier --check --ignore-unknown packages && npx eslint packages/*/*"
},
"engines": {
"node": ">=22.9.0",
"npm": ">=10.9.0"
},
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
}
}