-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"name": "cloudcounter",
"version": "1.0.0",
"description": "Privacy-focused web analytics running on Cloudflare Pages + D1. A serverless port of GoatCounter.",
"license": "EUPL-1.2",
"author": "Philipp D. Dubach",
"repository": {
"type": "git",
"url": "https://github.com/philippdubach/cloudcounter.git"
},
"homepage": "https://github.com/philippdubach/cloudcounter#readme",
"bugs": {
"url": "https://github.com/philippdubach/cloudcounter/issues"
},
"keywords": [
"analytics",
"cloudflare",
"cloudflare-pages",
"cloudflare-d1",
"privacy",
"goatcounter",
"serverless",
"web-analytics",
"typescript"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "wrangler pages dev public --d1=DB=cloudcounter --kv=SESSIONS",
"deploy": "wrangler pages deploy public",
"db:create": "wrangler d1 create cloudcounter",
"db:migrate": "wrangler d1 execute cloudcounter --file=./migrations/0001_init.sql",
"db:migrate:local": "wrangler d1 execute cloudcounter --file=./migrations/0001_init.sql --local",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"hono": "^4.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240117.0",
"typescript": "^5.3.3",
"wrangler": "^3.24.0"
}
}