-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.34 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.34 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
{
"name": "@hypershub/sdk",
"version": "0.3.2",
"description": "Official TypeScript SDK for HypersHub API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"preflight": "npm run typecheck && npm test && npm run build",
"prepublishOnly": "npm run preflight"
},
"files": [
"dist",
"README.md"
],
"homepage": "https://github.com/hypershub/typescript-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hypershub/typescript-sdk.git"
},
"bugs": {
"url": "https://github.com/hypershub/typescript-sdk/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"hypershub",
"ai",
"llm",
"openai",
"anthropic",
"gemini",
"sdk"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^25.6.2",
"tsup": "^8.4.0",
"typescript": "^5.7.0",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20"
}
}