-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.86 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@blizzard-api/root",
"version": "1.0.0",
"license": "MIT",
"author": "Putro",
"description": "A series of helpers to interact with the Blizzard Battle.net API",
"repository": "https://github.com/Pewtro/blizzard-api",
"type": "module",
"engines": {
"node": "^18.18 || >=20.9"
},
"packageManager": "[email protected]",
"keywords": [
"blizzard",
"battlenet",
"battle.net",
"bnet",
"api",
"world of warcraft",
"warcraft",
"wow",
"classic",
"retail",
"starcraft",
"sc2",
"diablo",
"d3",
"hs",
"hearthstone"
],
"devDependencies": {
"@changesets/cli": "2.27.11",
"@putstack/eslint-config-typescript": "3.14.1",
"@putstack/prettier-config": "1.4.3",
"@types/node": "22.10.2",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"eslint": "9.17.0",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"tsup": "8.3.5",
"turbo": "2.3.3",
"typescript": "5.7.2",
"typescript-eslint": "8.18.1",
"vitest": "2.1.8",
"zod": "3.24.1"
},
"scripts": {
"build": "turbo build",
"lint": "eslint --format stylish --max-warnings 0 --cache .",
"lint:ci": "npm-run-all -p -l lint typecheck stylecheck",
"lint:fix": "pnpm lint --fix",
"prepare": "husky",
"release": "changeset publish",
"stylecheck": "prettier --check .",
"test": "vitest run",
"test:coverage": "pnpm run test --coverage",
"test:ui": "vitest --ui --coverage",
"test:watch": "vitest watch",
"typecheck": "tsc"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,md,mdx,yaml,yml,json}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx,mjs}": [
"pnpm --silent lint:fix"
]
},
"pnpm": {
"overrides": {
"vite@>=5.2.0 <5.2.14": ">=5.2.14",
"nanoid@<3.3.8": ">=3.3.8"
}
}
}