-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1.02 KB
/
package.json
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
{
"name": "bskye",
"version": "0.1.0",
"license": "MIT",
"description": "Embed Bluesky videos, GIFs and images on Discord",
"scripts": {
"deploy:production": "wrangler deploy --name=bskye --route bskye.app --route d.bskye.app",
"deploy:staging": "wrangler deploy --name=staging-bskye --route staging.bskye.app --route d-staging.bskye.app",
"dev": "wrangler dev",
"test": "vitest run",
"test:watch": "vitest watch",
"cf-typegen": "wrangler types",
"lint": "eslint --fix src/**/*.ts",
"lint:check": "eslint src/**/*.ts"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.5.40",
"@cloudflare/workers-types": "^4.20241230.0",
"@eslint/js": "^9.11.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"typescript": "^5.5.2",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.3",
"wrangler": "^3.99.0"
},
"dependencies": {
"@atproto/api": "^0.13.25",
"hono": "^4.6.16"
}
}