-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "plugin.delivery",
"version": "1.0.0",
"description": "AI Plugin Index - Function call plugins and tools for SperaxOS",
"homepage": "https://plugin.delivery",
"repository": {
"type": "git",
"url": "https://github.com/nirholas/plugin.delivery.git"
},
"license": "MIT",
"author": "Sperax <contact@sperax.io>",
"type": "module",
"main": "public/index.json",
"files": [
"public"
],
"workspaces": [
"packages/*",
"api/plugins/*"
],
"scripts": {
"build": "bun scripts/build.ts",
"build:index": "bun scripts/build.ts",
"format": "bun scripts/format.ts",
"lint": "eslint \"scripts/**/*.ts\" --fix",
"test": "bun scripts/test.ts",
"dev": "vercel dev",
"deploy": "vercel --prod"
},
"dependencies": {
"@sperax/plugin-sdk": "workspace:*",
"@sperax/chat-plugins-gateway": "workspace:*"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.17.16",
"@vercel/node": "^2",
"consola": "^3.4.0",
"dayjs": "^1.11.13",
"dirty-json": "^0.9.2",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"fs-extra": "^11.3.0",
"langchain": "0.1.37",
"lodash-es": "^4.17.21",
"p-map": "^7.0.3",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vercel": "^39.0.0",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
}
}