-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 993 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 993 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
27
28
29
{
"name": "line-workers-template",
"version": "0.0.0",
"private": false,
"scripts": {
"types": "wrangler types",
"types:sync": "wrangler types",
"types:check": "npm run types:sync && git diff --exit-code -- worker-configuration.d.ts",
"format": "prettier . --write",
"format:check": "prettier . --check",
"typecheck": "tsc --noEmit",
"start": "wrangler dev --env--file .env",
"dev": "wrangler dev --env--file .env",
"deploy": "wrangler deploy --secrets-file .env",
"prestart": "npm run types:sync",
"predev": "npm run types:sync",
"predeploy": "npm run types:sync"
},
"dependencies": {
"@line/bot-sdk": "^11.0.2"
},
"devDependencies": {
"@types/node": "^26.0.0",
"prettier": "^3.9.4",
"typescript": "^6.0.3",
"wrangler": "^4.103.0"
},
"packageManager": "pnpm@11.8.0+sha512.c1f5e7c4cb241c8f174b743851d82f42b802324afc8b0f116b96adb15aa06664948dde36960a3ba1079ba5b4b29dd0140135b94b5b5f5263592249d68e555f26"
}