-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.35 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
{
"name": "@cubie-ai/plugin-jupiter",
"version": "0.1.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"description": "Plugin Jupiter: A MAIAR plugin that wraps the jupiter api",
"keywords": [
"ai",
"agent",
"framework",
"plugin",
"jupiter",
"jupiter api",
"solana"
],
"author": "0xSoc <contact@cubie.fun> (https://cubie.fun)",
"license": "MIT",
"homepage": "https://cubie.fun",
"repository": {
"type": "git",
"url": "git+https://github.com/Cubie-AI/plugin-jupiter.git"
},
"bugs": {
"url": "https://github.com/Cubie-AI/plugin-jupiter/issues"
},
"scripts": {
"build": "pnpm run clean && tsc --project tsconfig.json",
"prestart": "pnpm run build",
"start": "node --import tsx dist/demo/app.js",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@maiar-ai/core": "^0.8.0",
"axios": "^1.7.9",
"zod": "3.24.1"
},
"devDependencies": {
"@types/node": "^22.13.5",
"typescript": "^5.7.3"
}
}