-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.66 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
{
"name": "ig-autodm-worker",
"version": "0.1.0",
"description": "Self-hosted Instagram comment-to-DM automation on Cloudflare Workers using the official Meta API.",
"private": true,
"license": "MIT",
"type": "module",
"packageManager": "npm@11.8.0",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"infra:validate": "npm run infra:dry-run && npm run db:migrate:example",
"infra:dry-run": "wrangler deploy --dry-run --config wrangler.example.toml",
"scan:oss": "node scripts/oss-scan.mjs",
"db:migrate:example": "node scripts/d1-migrate-example.mjs",
"db:migrate:local": "wrangler d1 migrations apply DB --local",
"db:migrate:remote": "wrangler d1 migrations apply DB --remote"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aldoprianandi/ig-autodm-worker.git"
},
"bugs": {
"url": "https://github.com/aldoprianandi/ig-autodm-worker/issues"
},
"homepage": "https://github.com/aldoprianandi/ig-autodm-worker#readme",
"keywords": [
"instagram",
"meta-api",
"cloudflare-workers",
"d1",
"queues",
"automation",
"self-hosted"
],
"dependencies": {
"hono": "^4.12.21",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260521.1",
"@vitest/coverage-v8": "^3.2.6",
"miniflare": "4.20260520.0",
"typescript": "^6.0.3",
"vitest": "^3.2.6",
"wrangler": "^4.93.1"
},
"overrides": {
"miniflare": {
"ws": "8.20.1"
}
}
}