-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.14 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.14 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
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
79
80
81
{
"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": "^20.19.0 || ^22.13.0 || >=24"
},
"packageManager": "pnpm@10.33.2",
"keywords": [
"blizzard",
"battlenet",
"battle.net",
"bnet",
"api",
"world of warcraft",
"warcraft",
"wow",
"classic",
"retail",
"starcraft",
"sc2",
"diablo",
"d3",
"hs",
"hearthstone"
],
"devDependencies": {
"@arethetypeswrong/core": "0.18.2",
"@changesets/cli": "2.31.0",
"@putstack/eslint-config-typescript": "4.18.0",
"@putstack/prettier-config": "2.0.0",
"@types/node": "24.12.2",
"@vitest/coverage-v8": "4.1.5",
"@vitest/ui": "4.1.5",
"eslint": "10.2.1",
"eslint-plugin-jsdoc": "62.9.0",
"lefthook": "2.1.6",
"npm-run-all2": "8.0.4",
"prettier": "3.8.3",
"publint": "0.3.18",
"ts-to-zod": "5.1.0",
"tsdown": "0.21.10",
"tsx": "4.21.0",
"turbo": "2.9.6",
"typedoc": "0.28.19",
"typedoc-github-theme": "0.4.0",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0",
"vitest": "4.1.5",
"zod": "4.3.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook",
"unrs-resolver"
]
},
"scripts": {
"build:docs": "typedoc",
"build": "turbo build",
"generate:zod": "tsx ./scripts/generate-zod.ts",
"generate": "npm-run-all -l generate:zod \"prettier:write ./generated\" \"lint:fix ./generated\"",
"lint:ci": "npm-run-all -p -l typecheck stylecheck \"lint .\"",
"lint:fix": "pnpm lint --fix",
"lint": "eslint --format stylish --max-warnings 0 --cache",
"prepare": "lefthook install",
"prettier:write": "prettier --write",
"release": "changeset publish",
"stylecheck": "prettier --check .",
"test:coverage": "pnpm run test --coverage",
"test:ui": "vitest --ui --coverage",
"test:watch": "vitest watch",
"test": "vitest run --testTimeout 15000",
"typecheck": "tsc"
}
}