-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 896 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 896 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
30
31
32
{
"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",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"format": "prettier . --write",
"format:check": "prettier . --check",
"typecheck": "tsc --noEmit",
"start": "wrangler dev",
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"prestart": "npm run types:sync",
"predev": "npm run types:sync",
"predeploy": "npm run types:sync"
},
"devDependencies": {
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vitest": "^4.1.4",
"@vitest/coverage-v8": "^4.1.4",
"wrangler": "^4.85.0"
},
"dependencies": {
"@line/bot-sdk": "^11.0.0"
}
}