-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.37 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.37 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
{
"name": "mlbb-sdk",
"version": "2.0.1",
"description": "TypeScript SDK for MLBB Stats API",
"repository": {
"type": "git",
"url": "https://github.com/Arukenofu/mlbb-api-sdk"
},
"main": "dist/index.js",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./schemas": {
"import": "./dist/schemas/index.js",
"types": "./dist/schemas/index.d.ts"
}
},
"scripts": {
"test": "dotenv -- vitest run",
"clean": "rimraf dist .tsbuildinfo",
"build:js": "tsc -p tsconfig.build.json",
"build:dts": "tsc -p tsconfig.dts.json",
"build": "npm run clean && npm run build:js && npm run build:dts && dotenv -- vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"mlbb",
"sdk",
"api",
"typescript"
],
"author": "Arukenofu (Dylan)",
"license": "MIT",
"dependencies": {
"dotenv-cli": "^11.0.0",
"ofetch": "^1.5.1"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.6.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.2",
"undici": "^8.1.0",
"vite-node": "^6.0.0",
"vitest": "^4.1.4",
"zod": "^4.3.6"
}
}