@crvouga/mockingbird-service-wholescripts 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 +135 -0
- package/dist/chunk-ARWCVRNR.js +2785 -0
- package/dist/chunk-ARWCVRNR.js.map +7 -0
- package/dist/chunk-XXM4NA4F.js +376 -0
- package/dist/chunk-XXM4NA4F.js.map +7 -0
- package/dist/cli.js +19 -0
- package/dist/cli.js.map +7 -0
- package/dist/index.d.ts +966 -0
- package/dist/index.js +27 -0
- package/dist/index.js.map +7 -0
- package/dist/server.d.ts +1295 -0
- package/dist/server.js +12 -0
- package/dist/server.js.map +7 -0
- package/package.json +92 -0
package/dist/server.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@crvouga/mockingbird-service-wholescripts",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Stateful mock of the Wholescripts supplement fulfilment API: product and private-label catalogs, order submit, status polling and cancel, with admin status transitions.",
|
|
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-wholescripts": "./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/wholescripts"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/crvouga/mockingbird/tree/main/packages/service/wholescripts#readme",
|
|
38
|
+
"keywords": [
|
|
39
|
+
"mockingbird",
|
|
40
|
+
"service",
|
|
41
|
+
"wholescripts",
|
|
42
|
+
"supplements",
|
|
43
|
+
"medpax",
|
|
44
|
+
"fulfilment"
|
|
45
|
+
],
|
|
46
|
+
"mockingbird": {
|
|
47
|
+
"runtime": "portable",
|
|
48
|
+
"entries": {
|
|
49
|
+
"server": "node",
|
|
50
|
+
"cli": "node"
|
|
51
|
+
},
|
|
52
|
+
"layer": "service",
|
|
53
|
+
"category": "pharmacy",
|
|
54
|
+
"displayName": "Wholescripts",
|
|
55
|
+
"status": "wip",
|
|
56
|
+
"playground": {
|
|
57
|
+
"basicAuth": "mockingbird:mockingbird"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"scripts": {
|
|
61
|
+
"generate": "bun ../../openapi/codegen/dist/cli.js",
|
|
62
|
+
"generate:check": "bun ../../openapi/codegen/dist/cli.js --check",
|
|
63
|
+
"openapi:check": "bun ../../openapi/codegen/dist/cli.js --validate",
|
|
64
|
+
"build": "bun ../../../scripts/bundle-service.ts",
|
|
65
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
66
|
+
"lint": "biome check .",
|
|
67
|
+
"test": "bun test",
|
|
68
|
+
"parity": "bun scripts/parity.ts",
|
|
69
|
+
"portability": "bun ../../../scripts/portability.ts",
|
|
70
|
+
"pack:check": "bun ../../../scripts/pack-check.ts"
|
|
71
|
+
},
|
|
72
|
+
"dependencies": {
|
|
73
|
+
"@crvouga/mockingbird-service-sqlite": "0.3.0",
|
|
74
|
+
"hono": "4.11.9"
|
|
75
|
+
},
|
|
76
|
+
"devDependencies": {
|
|
77
|
+
"fast-check": "4.9.0",
|
|
78
|
+
"@crvouga/mockingbird-testing": "0.1.0",
|
|
79
|
+
"@crvouga/mockingbird-service-sqlite": "0.0.0-development",
|
|
80
|
+
"@crvouga/mockingbird-parity": "0.0.0-development",
|
|
81
|
+
"@crvouga/mockingbird-openbao": "0.0.0-development",
|
|
82
|
+
"@crvouga/mockingbird-openapi-codegen": "0.1.0",
|
|
83
|
+
"@crvouga/mockingbird-openapi-metadata": "0.0.0-development",
|
|
84
|
+
"@crvouga/mockingbird-core": "0.0.0-development",
|
|
85
|
+
"@crvouga/mockingbird-sqlite": "0.0.0-development",
|
|
86
|
+
"@crvouga/mockingbird-openapi": "0.0.0-development",
|
|
87
|
+
"@crvouga/mockingbird-service": "0.0.0-development",
|
|
88
|
+
"@crvouga/mockingbird-http-codec": "0.0.0-development",
|
|
89
|
+
"@crvouga/mockingbird-adapter-node": "0.0.0-development",
|
|
90
|
+
"zod": "3.25.76"
|
|
91
|
+
}
|
|
92
|
+
}
|