@crvouga/mockingbird-service-google-maps 0.1.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/CHANGELOG.md +5 -0
- package/README.md +151 -0
- package/dist/chunk-5HEE5U7V.js +3393 -0
- package/dist/chunk-5HEE5U7V.js.map +7 -0
- package/dist/chunk-YHBPY6U2.js +358 -0
- package/dist/chunk-YHBPY6U2.js.map +7 -0
- package/dist/cli.js +19 -0
- package/dist/cli.js.map +7 -0
- package/dist/index.d.ts +948 -0
- package/dist/index.js +37 -0
- package/dist/index.js.map +7 -0
- package/dist/server.d.ts +1209 -0
- package/dist/server.js +12 -0
- package/dist/server.js.map +7 -0
- package/package.json +89 -0
package/dist/server.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@crvouga/mockingbird-service-google-maps",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Mock of Google Places Autocomplete / Details / Find Place, the Geocoding API and a Maps JavaScript (places) shim, over a QA address corpus, with Google's status codes and fault presets.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md",
|
|
11
|
+
"CHANGELOG.md"
|
|
12
|
+
],
|
|
13
|
+
"main": "./dist/index.js",
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"default": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./server": {
|
|
21
|
+
"types": "./dist/server.d.ts",
|
|
22
|
+
"default": "./dist/server.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"bin": {
|
|
26
|
+
"mockingbird-google-maps": "./dist/cli.js"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public",
|
|
30
|
+
"provenance": true
|
|
31
|
+
},
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/crvouga/mockingbird.git",
|
|
35
|
+
"directory": "packages/service/google-maps"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/crvouga/mockingbird/tree/main/packages/service/google-maps#readme",
|
|
38
|
+
"keywords": [
|
|
39
|
+
"mockingbird",
|
|
40
|
+
"service",
|
|
41
|
+
"google",
|
|
42
|
+
"maps",
|
|
43
|
+
"places",
|
|
44
|
+
"geocoding",
|
|
45
|
+
"autocomplete"
|
|
46
|
+
],
|
|
47
|
+
"mockingbird": {
|
|
48
|
+
"runtime": "portable",
|
|
49
|
+
"entries": {
|
|
50
|
+
"server": "node",
|
|
51
|
+
"cli": "node"
|
|
52
|
+
},
|
|
53
|
+
"layer": "service",
|
|
54
|
+
"category": "logistics",
|
|
55
|
+
"displayName": "Google Maps",
|
|
56
|
+
"status": "wip"
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"generate": "bun ../../openapi/codegen/dist/cli.js",
|
|
60
|
+
"generate:check": "bun ../../openapi/codegen/dist/cli.js --check",
|
|
61
|
+
"openapi:check": "bun ../../openapi/codegen/dist/cli.js --validate",
|
|
62
|
+
"build": "bun ../../../scripts/bundle-service.ts",
|
|
63
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
64
|
+
"lint": "biome check .",
|
|
65
|
+
"test": "bun test",
|
|
66
|
+
"parity": "bun scripts/parity.ts",
|
|
67
|
+
"portability": "bun ../../../scripts/portability.ts",
|
|
68
|
+
"pack:check": "bun ../../../scripts/pack-check.ts"
|
|
69
|
+
},
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@crvouga/mockingbird-service-sqlite": "0.3.0",
|
|
72
|
+
"hono": "4.11.9"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"fast-check": "4.9.0",
|
|
76
|
+
"@crvouga/mockingbird-testing": "0.1.0",
|
|
77
|
+
"@crvouga/mockingbird-service-sqlite": "0.0.0-development",
|
|
78
|
+
"@crvouga/mockingbird-parity": "0.0.0-development",
|
|
79
|
+
"@crvouga/mockingbird-openbao": "0.0.0-development",
|
|
80
|
+
"@crvouga/mockingbird-openapi-codegen": "0.1.0",
|
|
81
|
+
"@crvouga/mockingbird-openapi-metadata": "0.0.0-development",
|
|
82
|
+
"@crvouga/mockingbird-core": "0.0.0-development",
|
|
83
|
+
"@crvouga/mockingbird-sqlite": "0.0.0-development",
|
|
84
|
+
"@crvouga/mockingbird-openapi": "0.0.0-development",
|
|
85
|
+
"@crvouga/mockingbird-service": "0.0.0-development",
|
|
86
|
+
"@crvouga/mockingbird-http-codec": "0.0.0-development",
|
|
87
|
+
"@crvouga/mockingbird-adapter-node": "0.0.0-development"
|
|
88
|
+
}
|
|
89
|
+
}
|