-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "agent-analytics",
"version": "1.0.0",
"description": "Agent-first web analytics for AI agents - Cloudflare Workers + D1",
"type": "module",
"main": "src/platforms/cloudflare.js",
"scripts": {
"start": "node src/platforms/node.js",
"lint": "eslint .",
"test": "vitest run",
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"db:create": "wrangler d1 create agent-analytics",
"db:init": "wrangler d1 execute agent-analytics --file=./schema.sql",
"db:init:local": "wrangler d1 execute agent-analytics --local --file=./schema.sql"
},
"keywords": [
"analytics",
"cloudflare",
"workers",
"ai-agents"
],
"author": "Danny Shmueli",
"license": "MIT",
"dependencies": {
"@agent-analytics/core": "^0.2.2",
"better-sqlite3": "^11.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"vitest": "^4.1.0",
"wrangler": "^4.73.0"
},
"overrides": {
"miniflare": {
"undici": "7.24.2"
}
}
}