-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.83 KB
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
{
"name": "@cryptlex/payment-platform-integrations",
"version": "2.3.0",
"description": "Hono server for creating Cryptlex Users and Licenses based on events send by the corresponding payment platforms",
"main": "index.js",
"scripts": {
"build:stripe:node": "tsc && esbuild ./stripe/index.node.ts --bundle --platform=node --target=node22 --outdir=./dist --allow-overwrite",
"build:stripe:aws": "tsc && esbuild ./stripe/index.aws.ts --bundle --outfile=./dist/index.js --platform=node --target=node22 --allow-overwrite",
"generate:mock-server": "msw-auto-mock https://api.dev.cryptlex.co/api-docs/v3/swagger.json -c 200,201,204 -o ./mock-server",
"build:fastspring:node": "tsc && esbuild ./fastspring/index.node.ts --bundle --platform=node --target=node22 --outdir=./dist --allow-overwrite",
"build:fastspring:aws": "tsc && esbuild ./fastspring/index.aws.ts --bundle --outfile=./dist/index.js --platform=node --target=node22 --allow-overwrite",
"test:stripe": "vitest stripe/test",
"test:fastspring": "vitest fastspring/test",
"build:paddle:node": "tsc && esbuild ./paddle/index.node.ts --bundle --platform=node --target=node22 --outdir=./dist --allow-overwrite",
"build:paddle:aws": "tsc && esbuild ./paddle/index.aws.ts --bundle --outfile=./dist/index.js --platform=node --target=node22 --allow-overwrite",
"test:paddle": "vitest paddle/tests"
},
"license": "MIT",
"dependencies": {
"@hono/node-server": "1.19.7",
"@paddle/paddle-node-sdk": "^3.6.0",
"hono": "4.10.8",
"nanoid": "5.1.6",
"openapi-fetch": "0.15.0"
},
"devDependencies": {
"@cryptlex/web-api-types": "2.94.0",
"@tsconfig/strictest": "^2.0.8",
"esbuild": "0.27.1",
"msw": "2.12.4",
"msw-auto-mock": "^0.31.0",
"stripe": "22.3.1",
"typescript": "5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}