mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-07-14 18:15:56 -04:00
28 lines
744 B
JSON
28 lines
744 B
JSON
{
|
|
"name": "@sofa/tmdb",
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
"./client": "./src/client.ts",
|
|
"./image": "./src/image.ts",
|
|
"./config": "./src/config.ts"
|
|
},
|
|
"scripts": {
|
|
"lint": "oxlint",
|
|
"format": "oxfmt --config ../../.oxfmtrc.json",
|
|
"format:check": "oxfmt --check --config ../../.oxfmtrc.json",
|
|
"check-types": "tsc --noEmit",
|
|
"generate-schema": "bunx openapi-typescript https://developer.themoviedb.org/openapi/tmdb-api.json -o ./src/schema.d.ts"
|
|
},
|
|
"dependencies": {
|
|
"@sofa/logger": "workspace:*",
|
|
"openapi-fetch": "0.17.0"
|
|
},
|
|
"devDependencies": {
|
|
"@sofa/tsconfig": "workspace:*",
|
|
"@types/bun": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|