-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.33 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.33 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
{
"name": "@onecli-sh/sdk",
"version": "0.1.4",
"description": "Official Node.js SDK for OneCLI. Connect AI agents to external services via the OneCLI proxy.",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"default": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"files": [
"lib"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"onecli",
"sdk",
"proxy",
"ai-agents",
"cli",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/onecli/node-sdk.git"
},
"author": "OneCLI <hello@onecli.sh>",
"license": "MIT",
"bugs": {
"url": "https://github.com/onecli/node-sdk/issues"
},
"homepage": "https://onecli.sh",
"packageManager": "pnpm@10.30.1",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^22.5.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^4.0.18"
}
}