-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.19 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
{
"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": "^7.0.2",
"vitest": "^4.1.9"
}
}