-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "sms-api-middleware-cloudflare",
"version": "1.0.0",
"description": "SMS API Middleware for Cloudflare Workers By ThiruXD",
"author": {
"name": "ThiruXD",
"email": "ThiruXD@gmail.com",
"url": "https://thiruxd.is-a.dev"
},
"main": "src/index.js",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"deploy:staging": "wrangler deploy --env staging",
"deploy:prod": "wrangler deploy --env production",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "eslint src/**/*.js",
"format": "prettier --write src/**/*.js",
"secret:set": "wrangler secret put",
"tail": "wrangler tail",
"logs": "wrangler tail --format=pretty"
},
"dependencies": {
"cookie": "^2.0.1",
"crypto-js": "^4.2.0",
"itty-router": "^5.0.18",
"itty-router-extras": "^0.4.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260822.1",
"@types/node": "^20.16.1",
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"vitest": "^4.1.11",
"wrangler": "^4.125.0"
}
}