-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.21 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.21 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
{
"name": "sneakerdb-client",
"version": "2.3.0",
"description": "A TypeScript client for interacting with The Sneaker Database API on RapidAPI.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"sneaker",
"sdk",
"client",
"rapidapi",
"The Sneaker Database API"
],
"author": {
"name": "Angel S. Moreno",
"email": "angelxmoreno@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/angelxmoreno/sneakerdb-client",
"bugs": {
"url": "https://github.com/angelxmoreno/sneakerdb-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/angelxmoreno/sneakerdb-client.git"
},
"engines": {
"node": ">=20.0.0",
"bun": ">=1.2.0"
},
"scripts": {
"prebuild": "node -e \"require('fs').rmSync('dist', {recursive: true, force: true})\"",
"build": "bun run build:js && bun run build:types",
"build:js": "bun build src/index.ts --outdir dist --target node --format cjs --minify --sourcemap",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist",
"test": "bun test",
"test:coverage": "bun test --coverage --coverage-reporter=lcov",
"check-types": "tsc --noEmit -p tsconfig.tests.json",
"prepare": "lefthook install",
"lint": "biome check .",
"lint:fix": "biome check --write ."
},
"dependencies": {
"@keyvhq/core": "^2.1.11",
"axios": "^1.13.2",
"axios-date-transformer": "^1.2.1",
"object-hash": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.9",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@keyvhq/sqlite": "^2.1.11",
"@types/bun": "^1.3.4",
"@types/object-hash": "^3.0.6",
"axios-mock-adapter": "^2.1.0",
"lefthook": "^2.0.12",
"ms": "^2.1.3",
"typescript": "^5.9.3"
}
}