-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "@nethergames/api",
"version": "2.8.3",
"description": "Fully typed client for the NetherGames API.",
"keywords": ["nethergames", "api"],
"repository": "NetherGamesMC/api-client",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": "./dist/index.js",
"types": "./dist",
"files": ["dist"],
"scripts": {
"build": "rm -rf dist && tsc",
"format": "npx @biomejs/biome format --write .",
"generate": "openapi-typescript https://docs.nethergames.org/openapi.json -o src/openapi.ts && sed -i '' 's/@description Deprecated,/@deprecated/g' src/openapi.ts",
"lint": "npx @biomejs/biome lint --write --unsafe .",
"prepublishOnly": "npm run -s build",
"test": "npm run -s build && ava"
},
"dependencies": {
"nanoevents": "^9.0.0",
"node-fetch": "^3.3.2",
"quick-lru": "^7.0.0",
"type-fest": "^4.19.0"
},
"devDependencies": {
"@ava/typescript": "5.0.0",
"@biomejs/biome": "1.9.4",
"@sindresorhus/tsconfig": "7.0.0",
"ava": "6.2.0",
"openapi-typescript": "7.5.1",
"typescript": "5.7.2"
},
"engines": {
"node": ">=14.16"
}
}