-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.82 KB
/
package.json
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
{
"name": "consoles-ai",
"version": "0.1.14",
"description": "ConsolesAI SDK and CLI tool",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"bin": {
"consoles-ai": "cli/index.js"
},
"scripts": {
"build": "rimraf dist && tsx build.ts",
"build:watch": "rimraf dist && tsx build.ts --watch",
"lint": "eslint . --ext .ts,.js",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/consolesai/consoles-ai.git"
},
"keywords": [
"consoles-ai",
"ai sdk",
"ai framework",
"cloud cli",
"ai tool"
],
"author": "ConsolesAI",
"license": "MIT",
"bugs": {
"url": "https://github.com/consolesai/consoles-ai/issues"
},
"homepage": "https://github.com/consolesai/consoles-ai#readme",
"dependencies": {
"@acusti/parsing": "^0.14.3",
"@cloudflare/ai-utils": "^1.0.1",
"@cloudflare/workers-types": "^4.20240605.0",
"@google/generative-ai": "^0.14.1",
"ai": "^4.0.13",
"arg": "^5.0.2",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"esbuild": "^0.21.5",
"figlet": "^1.7.0",
"hono": "^4.5.0",
"install": "^0.13.0",
"open": "^10.1.0",
"openai-zod-functions": "^0.1.2",
"os": "^0.1.2",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@hono/node-server": "^1.11.4",
"@types/figlet": "^1.5.8",
"@types/glob": "^8.1.0",
"@types/node": "^20.12.12",
"eslint": "^8.32.0",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"tsx": "^4.15.7",
"typescript": "^5.4.5"
},
"type": "module",
"files": [
"dist/**/*",
"cli/**/*"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
}
}
}