-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.67 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
38
39
40
41
42
43
44
45
46
47
{
"name": "@ramp/edge",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy:cf": "wrangler deploy",
"fmt": "biome format --write .",
"fmt:check": "biome format .",
"lint": "biome check --error-on-warnings . && npm run lint:promises",
"lint:promises": "oxlint -A all --type-aware -D no-floating-promises src tests scripts",
"lint:fix": "biome check --write .",
"cycles": "madge --circular --extensions ts src",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e:cf": "vitest run --project workers tests/workers/e2e.cloudflare.test.ts",
"test:aws": "vitest run --project node tests/node/aws-handler.test.ts",
"test:fastly": "vitest run --project node tests/node/fastly-entry.test.ts",
"test:e2e:article": "vitest run --project article-path",
"build:worker": "node scripts/build-worker.mjs",
"serve:miniflare": "node scripts/serve-miniflare.mjs"
},
"dependencies": {
"@ramp-protocol/sdk-l1": "git+https://github.com/RAMP-Protocol/protocol.git#104d867aa9a15a316723af6c3dd61d73ed490363",
"hono": "^4.7.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/vitest-pool-workers": "^0.18.6",
"@cloudflare/workers-types": "^5.20260721.1",
"@fastly/js-compute": "^3.26.0",
"@types/aws-lambda": "^8.10.145",
"@types/node": "^26.1.1",
"ajv": "^8.20.0",
"esbuild": "^0.24.2",
"madge": "^8.0.0",
"miniflare": "^4.20260714.0",
"oxlint": "^1.74.0",
"oxlint-tsgolint": "^0.25.0",
"typescript": "^5.7.3",
"vitest": "^4.1.10",
"wrangler": "^4.112.0"
}
}