-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 751 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 751 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": "pname",
"version": "1.0.0",
"description": "Cloudflare worker TypeScript template",
"main": "dist/worker.js",
"scripts": {
"build": "webpack",
"deploy": "npm run build && wrangler publish",
"dev": "NOD_ENV=development npm run tunnel",
"transpile": "tsc --project ./test"
},
"author": "author",
"license": "MIT OR Apache-2.0",
"devDependencies": {
"@cloudflare/workers-types": "^2.2.1",
"@types/node": "^15.0.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^5.36.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"discord-api-types": "^0.26.1",
"discord-interactions": "^2.4.1"
}
}