-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.37 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
79
80
81
82
83
84
85
86
{
"name": "@tqman/valorant-api-client",
"version": "1.5.1",
"type": "module",
"description": "Type-safe API client for Valorant",
"files": [
"dist",
"package.json"
],
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./types": {
"import": "./dist/types.mjs",
"require": "./dist/types.cjs",
"types": "./dist/types.d.ts"
},
"./presets": {
"import": "./dist/presets.mjs",
"require": "./dist/presets.cjs",
"types": "./dist/presets.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "unbuild",
"release": "release-it",
"type:check": "tsc --noEmit",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "pnpm type:check && pnpm format:check",
"seed:auth-endpoints": "tsx ./scripts/endpoints/auth.generator.ts",
"seed:local-endpoints": "tsx ./scripts/endpoints/local.generator.ts",
"seed:remote-endpoints": "tsx ./scripts/endpoints/remote.generator.ts",
"seed:local-websocket": "tsx ./scripts/websocket/local.generator.ts",
"seed:endpoints": "pnpm seed:auth-endpoints && pnpm seed:local-endpoints && pnpm seed:remote-endpoints",
"seed": "pnpm seed:endpoints"
},
"keywords": [
"valorant",
"api",
"client",
"riot"
],
"author": "tanishqmanuja",
"license": "MIT",
"homepage": "https://github.com/tanishqmanuja/valorant-api-client#readme",
"repository": "github:tanishqmanuja/valorant-api-client",
"packageManager": "pnpm@8.6.7",
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@tqman/prettier-config": "^1.0.0",
"@tqman/tsconfig": "^1.0.0",
"@types/node": "^20.11.17",
"@types/tough-cookie": "^4.0.5",
"@types/ws": "^8.5.10",
"change-case": "^5.4.2",
"prettier": "^3.2.5",
"release-it": "^17.0.3",
"tsx": "^4.16.2",
"turbo": "^2.0.6",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"dependencies": {
"axios": "^1.6.7",
"fp-ts": "^2.16.2",
"fp-ts-contrib": "^0.1.29",
"tough-cookie": "5.0.0-rc.3",
"ts-extras": "^0.11.0",
"valorant-api-types": "^0.10.1",
"ws": "^8.16.0",
"zod": "^3.22.4"
}
}