-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@rhildred/cors-proxy2",
"version": "1.0.9",
"description": "cors proxy to expose in a cloudflare pages function",
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/js/index.es.js",
"require": "./dist/js/index.umd.js"
}
},
"scripts": {
"test": "vitest run __tests__",
"build": "vite build",
"start": "node expressServer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhildred/cors-proxy2.git"
},
"keywords": [
"github",
"cors",
"proxy",
"cloudflare",
"pages",
"functions",
"stackblitz",
"isomorphic-git"
],
"author": "Rich Hildred",
"license": "MIT",
"bugs": {
"url": "https://github.com/rhildred/cors-proxy2/issues"
},
"homepage": "https://rhildred.github.io/cors-proxy2",
"type": "module",
"devDependencies": {
"body-parser": "^1.20.2",
"cloudflare2express": "^1.0.2",
"diy-pwa": "^1.0.59",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"isomorphic-git": "^1.24.0",
"supertest": "^6.3.3",
"vite": "^4.2.1",
"vitest": "^0.29.8"
}
}