-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 950 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 950 Bytes
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
{
"name": "agentfolio",
"version": "2.0.0",
"description": "Autonomous AI agent registry with TypeScript analytics tracking",
"type": "module",
"main": "dist/posthog-referral-tracker.js",
"types": "dist/posthog-referral-tracker.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"lint": "tsc --noEmit",
"typecheck": "tsc --noEmit"
},
"keywords": [
"agent",
"registry",
"analytics",
"posthog",
"typescript",
"a2a"
],
"author": "Bob Renze",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bobrenze-bot/agentfolio-skill"
},
"bugs": {
"url": "https://github.com/bobrenze-bot/agentfolio-skill/issues"
},
"homepage": "https://bobrenze.com",
"devDependencies": {
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/",
"src/",
"README.md"
]
}