-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 KB
/
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
32
33
34
35
36
37
38
39
40
41
{
"name": "worker-functions",
"version": "0.7.1",
"description": "Full-stack Typesafety with Cloudflare Workers 👷",
"main": "generated-client/index.ts",
"scripts": {
"build": "esbuild --target=es2020 --external:worker-functions --bundle ./src/generate-client.ts --platform=node --format=cjs --outfile=./dist/generate-client.js "
},
"bin": {
"worker-functions": "./dist/generate-client.js"
},
"files": [
"templates",
"dist",
"package.json",
"package-lock.json",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mojavad/worker-functions.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/mojavad/worker-functions/issues"
},
"homepage": "https://github.com/mojavad/worker-functions#readme",
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^18.14.1",
"esbuild": "^0.17.10",
"glob": "^8.1.0",
"typescript": "^4.9.5"
},
"dependencies": {
"cross-fetch": "^3.1.5",
"devalue": "^4.3.0"
}
}