@ahmadissa/cloudworker-proxy 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,96 @@
1
+ {
2
+ "name": "@ahmadissa/cloudworker-proxy",
3
+ "version": "1.0.0",
4
+ "description": "An api gateway for cloudflare workers",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/ahmadissa/cloudworker-proxy.git"
9
+ },
10
+ "bugs": {
11
+ "url": "https://github.com/ahmadissa/cloudworker-proxy/issues"
12
+ },
13
+ "homepage": "https://github.com/ahmadissa/cloudworker-proxy#readme",
14
+ "author": "Markus Ahlstrand",
15
+ "keywords": [
16
+ "cloudflare",
17
+ "workers",
18
+ "api",
19
+ "gateway",
20
+ "proxy"
21
+ ],
22
+ "main": "dist/index.js",
23
+ "files": [
24
+ "dist/**"
25
+ ],
26
+ "scripts": {
27
+ "build": "esbuild --bundle src/index.ts --format=cjs --outdir=dist --sourcemap --minify",
28
+ "lint": "eslint src",
29
+ "package": "bun install; npm run build",
30
+ "test": "npm run unit && npm run lint",
31
+ "test:integration": "node integration/run.js",
32
+ "unit": "bun test",
33
+ "semantic-release": "semantic-release",
34
+ "prepare": "husky install"
35
+ },
36
+ "release": {
37
+ "branches": [
38
+ "master"
39
+ ],
40
+ "plugins": [
41
+ "@semantic-release/commit-analyzer",
42
+ "@semantic-release/release-notes-generator",
43
+ [
44
+ "@semantic-release/npm",
45
+ {
46
+ "npmPublish": false
47
+ }
48
+ ],
49
+ [
50
+ "@semantic-release/git",
51
+ {
52
+ "assets": [
53
+ "docs",
54
+ "package.json"
55
+ ],
56
+ "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
57
+ }
58
+ ]
59
+ ]
60
+ },
61
+ "dependencies": {
62
+ "lodash.get": "4.4.2",
63
+ "lodash.set": "4.3.2",
64
+ "aws4fetch": "1.0.13",
65
+ "cloudworker-router": "1.11.2",
66
+ "shortid": "2.2.16",
67
+ "cookie": "0.4.1"
68
+ },
69
+ "devDependencies": {
70
+ "@semantic-release/git": "^10.0.1",
71
+ "@types/jest": "^29.5.5",
72
+ "@types/mocha": "^10.0.1",
73
+ "@types/node": "^20.5.9",
74
+ "@typescript-eslint/eslint-plugin": "^6.6.0",
75
+ "@typescript-eslint/parser": "^6.6.0",
76
+ "bun": "1.0.3",
77
+ "dotenv": "8.2.0",
78
+ "esbuild": "^0.19.2",
79
+ "eslint": "7.13.0",
80
+ "eslint-config-airbnb-base": "14.2.1",
81
+ "eslint-config-prettier": "6.15.0",
82
+ "eslint-plugin-import": "2.22.1",
83
+ "eslint-plugin-prettier": "3.1.4",
84
+ "fetch-mock": "9.11.0",
85
+ "husky": "^8.0.3",
86
+ "node-fetch": "2.6.1",
87
+ "prettier": "2.1.2",
88
+ "semantic-release": "^22.0.4",
89
+ "typescript": "^5.2.2",
90
+ "wrangler": "^3.7.0"
91
+ },
92
+ "directories": {
93
+ "example": "examples",
94
+ "test": "test"
95
+ }
96
+ }