@beshkenadze/courtlistener-sdk
Version:
TypeScript SDK and MCP server for CourtListener API
84 lines (83 loc) • 2.18 kB
JSON
{
"name": "@beshkenadze/courtlistener-sdk",
"version": "1.1.0",
"description": "TypeScript SDK and MCP server for CourtListener API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun run build.ts",
"generate": "orval",
"format": "biome format --write .",
"lint": "biome lint --write .",
"check": "biome check --write .",
"check:ci": "biome ci .",
"prepublishOnly": "bun run build",
"test": "bun test src",
"test:watch": "bun test --watch src",
"test:integration": "SKIP_INTEGRATION_TESTS=false bun test src",
"test:all": "bun test",
"mcp:server": "bun run src/mcp/server.ts",
"download": "echo 'No download script defined, use `bun run generate` to generate the SDK from the API specification.'"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"axios": "^1.10.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"@types/bun": "latest",
"@types/node": "^24.1.0",
"@us-legal-tools/tsconfig": "workspace:*",
"orval": "^7.10.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"keywords": [
"courtlistener",
"legal",
"api",
"sdk",
"mcp",
"typescript",
"case-law",
"judges",
"courts"
],
"homepage": "https://github.com/beshkenadze/ecfr-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/beshkenadze/ecfr-sdk.git",
"directory": "packages/courtlistener-sdk"
},
"bugs": {
"url": "https://github.com/beshkenadze/ecfr-sdk/issues"
},
"author": "Aleksandr Beshkenadze <beshkenadze@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"import": "./dist/mcp/index.mjs",
"require": "./dist/mcp/index.js"
}
}
}