@cedarjs/api-server 1.0.0-canary.12512 → 1.0.0-canary.12513
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 +62 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/api-server",
|
|
3
|
-
"version": "1.0.0-canary.
|
|
3
|
+
"version": "1.0.0-canary.12513+fa086fdda",
|
|
4
4
|
"description": "CedarJS's HTTP server for Serverless Functions",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -9,6 +9,59 @@
|
|
|
9
9
|
},
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"type": "module",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": {
|
|
15
|
+
"types": "./dist/createServer.d.ts",
|
|
16
|
+
"default": "./dist/createServer.js"
|
|
17
|
+
},
|
|
18
|
+
"require": {
|
|
19
|
+
"types": "./dist/cjs/createServer.d.ts",
|
|
20
|
+
"default": "./dist/cjs/createServer.js"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"./package.json": "./package.json",
|
|
24
|
+
"./apiCliConfig": {
|
|
25
|
+
"import": {
|
|
26
|
+
"types": "./dist/apiCLIConfig.d.ts",
|
|
27
|
+
"default": "./dist/apiCLIConfig.js"
|
|
28
|
+
},
|
|
29
|
+
"require": {
|
|
30
|
+
"types": "./dist/cjs/apiCLIConfig.d.ts",
|
|
31
|
+
"default": "./dist/cjs/apiCLIConfig.js"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"./bothCliConfig": {
|
|
35
|
+
"import": {
|
|
36
|
+
"types": "./dist/bothCLIConfig.d.ts",
|
|
37
|
+
"default": "./dist/bothCLIConfig.js"
|
|
38
|
+
},
|
|
39
|
+
"require": {
|
|
40
|
+
"types": "./dist/cjs/bothCLIConfig.d.ts",
|
|
41
|
+
"default": "./dist/cjs/bothCLIConfig.js"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"./apiCliConfigHandler": {
|
|
45
|
+
"import": {
|
|
46
|
+
"types": "./dist/apiCLIConfigHandler.d.ts",
|
|
47
|
+
"default": "./dist/apiCLIConfigHandler.js"
|
|
48
|
+
},
|
|
49
|
+
"require": {
|
|
50
|
+
"types": "./dist/cjs/apiCLIConfigHandler.d.ts",
|
|
51
|
+
"default": "./dist/cjs/apiCLIConfigHandler.js"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"./cliHelpers": {
|
|
55
|
+
"import": {
|
|
56
|
+
"types": "./dist/cliHelpers.d.ts",
|
|
57
|
+
"default": "./dist/cliHelpers.js"
|
|
58
|
+
},
|
|
59
|
+
"require": {
|
|
60
|
+
"types": "./dist/cjs/cliHelpers.d.ts",
|
|
61
|
+
"default": "./dist/cjs/cliHelpers.js"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
12
65
|
"main": "./dist/createServer.js",
|
|
13
66
|
"types": "./dist/createServer.d.ts",
|
|
14
67
|
"bin": {
|
|
@@ -36,11 +89,11 @@
|
|
|
36
89
|
"test:watch": "vitest watch"
|
|
37
90
|
},
|
|
38
91
|
"dependencies": {
|
|
39
|
-
"@cedarjs/context": "1.0.0-canary.
|
|
40
|
-
"@cedarjs/fastify-web": "1.0.0-canary.
|
|
41
|
-
"@cedarjs/internal": "1.0.0-canary.
|
|
42
|
-
"@cedarjs/project-config": "1.0.0-canary.
|
|
43
|
-
"@cedarjs/web-server": "1.0.0-canary.
|
|
92
|
+
"@cedarjs/context": "1.0.0-canary.12513",
|
|
93
|
+
"@cedarjs/fastify-web": "1.0.0-canary.12513",
|
|
94
|
+
"@cedarjs/internal": "1.0.0-canary.12513",
|
|
95
|
+
"@cedarjs/project-config": "1.0.0-canary.12513",
|
|
96
|
+
"@cedarjs/web-server": "1.0.0-canary.12513",
|
|
44
97
|
"@fastify/multipart": "9.0.3",
|
|
45
98
|
"@fastify/url-data": "6.0.3",
|
|
46
99
|
"ansis": "4.1.0",
|
|
@@ -57,7 +110,7 @@
|
|
|
57
110
|
"yargs": "17.7.2"
|
|
58
111
|
},
|
|
59
112
|
"devDependencies": {
|
|
60
|
-
"@cedarjs/framework-tools": "1.0.0-canary.
|
|
113
|
+
"@cedarjs/framework-tools": "1.0.0-canary.12513",
|
|
61
114
|
"@types/aws-lambda": "8.10.152",
|
|
62
115
|
"@types/dotenv-defaults": "^2.0.4",
|
|
63
116
|
"@types/qs": "6.9.16",
|
|
@@ -70,12 +123,12 @@
|
|
|
70
123
|
"vitest": "3.2.4"
|
|
71
124
|
},
|
|
72
125
|
"peerDependencies": {
|
|
73
|
-
"@cedarjs/graphql-server": "1.0.0-canary.
|
|
126
|
+
"@cedarjs/graphql-server": "1.0.0-canary.12513"
|
|
74
127
|
},
|
|
75
128
|
"peerDependenciesMeta": {
|
|
76
129
|
"@cedarjs/graphql-server": {
|
|
77
130
|
"optional": true
|
|
78
131
|
}
|
|
79
132
|
},
|
|
80
|
-
"gitHead": "
|
|
133
|
+
"gitHead": "fa086fdda596f6b7b4b822e3449b1bfb77738fa1"
|
|
81
134
|
}
|