-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.44 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
{
"name": "p4u-client-ai",
"version": "0.2.0",
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"!dist/test",
"!dist/**/*.map"
],
"author": "p4u",
"license": "Apache-2.0",
"homepage": "https://www.valar-ai.com",
"keywords": [
"api",
"api-rest",
"ai",
"client",
"hub",
"task",
"agent",
"rag",
"vector db",
"automation",
"valar-ai"
],
"description": "Empower Your Apps with AI: Access Multiple Models, Automate Tasks, Create AI Agents Easily",
"engines": {
"node": ">=20.14.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Programmers4u/api-client-ai.git"
},
"scripts": {
"dev": "ts-node-dev --respawn src/index.ts",
"build": "tsc",
"test": "tsc && node dist/test/index.js",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm"
},
"dependencies": {
"axios": ">=1.8.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.2",
"@tsconfig/node20": "^20.1.4",
"@types/axios": "^0.14.0",
"@types/node": "^20.14.10",
"prettier": "^3.3.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
}
}