-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 782 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 782 Bytes
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
{
"name": "avalanche-canada-sms",
"version": "1.0.0",
"description": "A serverless application that lets users text their GPS coordinates to a phone number and receive a summary of current avalanche conditions from [Avalanche Canada](https://avalanche.ca) for that location.",
"main": "src/index.ts",
"scripts": {
"dev": "wrangler dev",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"deploy": "wrangler deploy"
},
"keywords": [],
"author": "Brendan Asselstine",
"license": "MIT",
"dependencies": {
"hono": "^4.12.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260302.0",
"@types/node": "^25.3.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"wrangler": "^4.68.0"
}
}