-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 1.99 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 1.99 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@ai-ml.api/aimlapi-sdk-node",
"type": "commonjs",
"version": "1.0.1",
"description": "AI/ML API SDK for Node.js",
"author": {
"name": "AI/ML API",
"email": "stelyatko@aimlapi.com"
},
"types": "dist/aimlapi/index.d.ts",
"main": "dist/aimlapi/index.js",
"exports": {
".": {
"types": "./dist/aimlapi/index.d.ts",
"import": "./dist/aimlapi/index.js",
"require": "./dist/aimlapi/index.js"
},
"./*": {
"types": "./dist/aimlapi/*.d.ts",
"import": "./dist/aimlapi/*.js",
"require": "./dist/aimlapi/*.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "./scripts/build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "./scripts/lint",
"format": "./scripts/format",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"openai": "^4.104.0",
"ws": "^8.0.0",
"zod": "^3.25.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"openai": {
"required": true
},
"ws": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.19.30",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"dotenv": "^17.2.3",
"eslint": "^8.56.0",
"prettier": "^3.2.0",
"tsx": "^4.19.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"ai",
"ml",
"aimlapi",
"openai",
"llm",
"chatgpt",
"gpt-4",
"gpt-4o",
"anthropic",
"claude",
"gemini",
"deepseek",
"api",
"sdk"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/aimlapi/aimlapi-sdk-node"
},
"bugs": {
"url": "https://github.com/aimlapi/aimlapi-sdk-node/issues"
},
"homepage": "https://docs.aimlapi.com",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}