-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.32 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.32 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
{
"name": "x402-api",
"version": "1.5.3",
"private": true,
"scripts": {
"dev": "npm run wrangler -- dev",
"deploy:staging": "npm run wrangler -- deploy --env staging",
"deploy:production": "npm run wrangler -- deploy --env production",
"deploy:dry-run": "npm run wrangler -- deploy --dry-run",
"check": "tsc --noEmit",
"wrangler": "set -a && . ./.env && set +a && npx wrangler",
"cf-typegen": "npm run wrangler -- types",
"test": "bun run tests/_run_all_tests.ts",
"test:setup": "bun run tests/check-setup.ts",
"test:quick": "bun run tests/_run_all_tests.ts --mode=quick",
"test:full": "bun run tests/_run_all_tests.ts --mode=full",
"test:category": "bun run tests/_run_all_tests.ts --category",
"test:kv": "bun run tests/kv-lifecycle.test.ts",
"test:verbose": "VERBOSE=1 bun run tests/_run_all_tests.ts",
"postinstall": "patch-package"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260109.0",
"@stacks/wallet-sdk": "^7.2.0",
"@types/bun": "^1.2.0",
"patch-package": "^8.0.1",
"typescript": "^5.9.3",
"wrangler": "^4.58.0"
},
"dependencies": {
"@stacks/encryption": "^7.3.1",
"@stacks/network": "^7.3.1",
"@stacks/transactions": "^7.3.1",
"chanfana": "^3.0.0",
"hono": "^4.11.3",
"x402-stacks": "^2.0.1"
}
}