@pluv/platform-pluv 0.0.0-experimental-20250527040415
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/.turbo/turbo-build.log +19 -0
- package/.turbo/turbo-lint.log +5 -0
- package/CHANGELOG.md +934 -0
- package/LICENSE +21 -0
- package/dist/index.d.mts +94 -0
- package/dist/index.d.ts +94 -0
- package/dist/index.js +434 -0
- package/dist/index.mjs +403 -0
- package/eslint.config.mjs +4 -0
- package/package.json +41 -0
- package/src/PluvPlatform.ts +329 -0
- package/src/constants.ts +2 -0
- package/src/index.ts +4 -0
- package/src/platformPluv.ts +35 -0
- package/src/schemas.ts +84 -0
- package/src/shared/HttpError.ts +11 -0
- package/src/shared/createErrorResponse.ts +11 -0
- package/src/shared/createHmac.ts +41 -0
- package/src/shared/createSuccessResponse.ts +24 -0
- package/src/shared/getCrypto.ts +17 -0
- package/src/shared/index.ts +13 -0
- package/src/shared/signWebhook.ts +10 -0
- package/src/shared/timingSafeEqual.ts +10 -0
- package/src/shared/verifyWebhook.ts +28 -0
- package/src/types.ts +58 -0
- package/tsconfig.json +8 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
> @pluv/platform-pluv@2.2.4 build /home/leedavidcs/projects/pluv/packages/platform-pluv
|
|
4
|
+
> tsup src/index.ts --format esm,cjs --dts
|
|
5
|
+
|
|
6
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
7
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
8
|
+
[34mCLI[39m tsup v8.5.0
|
|
9
|
+
[34mCLI[39m Target: es6
|
|
10
|
+
[34mESM[39m Build start
|
|
11
|
+
[34mCJS[39m Build start
|
|
12
|
+
[32mCJS[39m [1mdist/index.js [22m[32m14.74 KB[39m
|
|
13
|
+
[32mCJS[39m ⚡️ Build success in 119ms
|
|
14
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m12.90 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 121ms
|
|
16
|
+
DTS Build start
|
|
17
|
+
DTS ⚡️ Build success in 3566ms
|
|
18
|
+
DTS dist/index.d.mts 3.75 KB
|
|
19
|
+
DTS dist/index.d.ts 3.75 KB
|