forked from inngest/typedwebhook.tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 875 Bytes
/
package.json
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
{
"name": "typedwebhook.tools",
"version": "1.0.0",
"description": "A service that allows you to inspect the types of webhook payloads",
"type": "module",
"module": "./dist/index.mjs",
"scripts": {
"build": "node build.js",
"dev": "miniflare --live-reload --debug",
"test": "npm run build && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"types:check": "tsc && tsc -p test/tsconfig.json"
},
"keywords": [],
"author": "",
"license": "GPL-3.0",
"devDependencies": {
"@cloudflare/workers-types": "^3.1.1",
"@types/jest": "^27.0.2",
"@types/uuid": "^8.3.4",
"esbuild": "^0.13.13",
"jest": "^27.3.1",
"jest-environment-miniflare": "^2.14.0",
"miniflare": "^2.14.0",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"uuid": "^8.3.2"
}
}