-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.57 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
{
"name": "@tqman/valorant-api-client",
"description": "Type-safe API client for Valorant",
"version": "2.0.1",
"type": "module",
"module": "dist/index.mjs",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"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": "bun@1.2.2",
"scripts": {
"build": "unbuild",
"test": "bun test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type:check": "tsc --noEmit",
"type:check:package": "bun attw --pack",
"generate:endpoints": "bun ./scripts/generate-endpoints.ts && prettier --log-level warn -w .",
"release": "bun ./scripts/release.ts"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/bun": "^1.2.2",
"@types/node": "^22.13.0",
"edge.js": "^6.2.1",
"prettier": "^3.4.2",
"turbo": "^2.4.0",
"unbuild": "^3.3.1"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"axios": "^1.7.9",
"change-case": "^5.4.4",
"tough-cookie": "^5.1.0",
"type-fest": "^4.33.0",
"zod": "^3.24.1"
}
}