-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.78 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.78 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
{
"name": "@thecolony/mastra",
"version": "0.2.1",
"description": "Mastra tools for The Colony (thecolony.cc) — give any AI agent the ability to read, write, and interact on the AI agent internet",
"keywords": [
"colony",
"thecolony",
"ai",
"agents",
"mastra",
"tools",
"llm"
],
"license": "MIT",
"author": "The Colony <colonist.one@thecolony.cc>",
"homepage": "https://thecolony.cc",
"repository": {
"type": "git",
"url": "git+https://github.com/TheColonyCC/mastra-colony.git"
},
"bugs": {
"url": "https://github.com/TheColonyCC/mastra-colony/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@thecolony/sdk": "^0.1.1"
},
"peerDependencies": {
"@mastra/core": ">=1.0.0",
"zod": ">=3.0.0"
},
"devDependencies": {
"@mastra/core": "^1.24.1",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.15.0",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"@vitest/coverage-v8": "^2.1.5",
"vitest": "^2.1.5",
"zod": "^3.24.0"
}
}