57 lines
1.2 KiB
JSON
57 lines
1.2 KiB
JSON
{
|
|
"name": "@upstash/context7-sdk",
|
|
"version": "0.3.1",
|
|
"description": "JavaScript/TypeScript SDK for Context7",
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"typecheck": "tsc --noEmit",
|
|
"dev": "tsup --watch",
|
|
"clean": "rm -rf dist",
|
|
"lint": "eslint .",
|
|
"lint:check": "eslint ."
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/upstash/context7.git",
|
|
"directory": "packages/sdk"
|
|
},
|
|
"keywords": [
|
|
"context7",
|
|
"sdk",
|
|
"documentation",
|
|
"ai",
|
|
"upstash"
|
|
],
|
|
"author": "Upstash",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/client.js",
|
|
"require": "./dist/client.cjs"
|
|
}
|
|
},
|
|
"main": "./dist/client.cjs",
|
|
"module": "./dist/client.js",
|
|
"types": "./dist/client.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/upstash/context7/issues"
|
|
},
|
|
"homepage": "https://github.com/upstash/context7#readme",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.0.3",
|
|
"dotenv": "^17.4.2",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.8.2",
|
|
"vitest": "^4.1.9"
|
|
}
|
|
}
|