forked from x402-foundation/x402
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.03 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
{
"name": "x402_monorepo",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=11.1.1"
},
"packageManager": "pnpm@11.1.1",
"private": "true",
"version": "0.0.2",
"description": "x402 Payment Protocol Monorepo",
"main": "index.js",
"scripts": {
"build": "turbo run build",
"build:paywall-deps": "turbo run build --filter='@x402/paywall^...'",
"lint": "turbo run lint",
"format": "turbo run format",
"lint:check": "turbo run lint:check",
"format:check": "turbo run format:check",
"test": "turbo run test",
"test:integration": "pnpm --filter @x402/core --filter @x402/evm --filter @x402/svm --filter @x402/avm --filter @x402/aptos --filter @x402/hedera --filter @x402/stellar test:integration",
"test:all": "pnpm test && pnpm test:integration"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"tsx": "^4.21.0",
"tsup": "^8.4.0",
"turbo": "^2.5.0",
"typescript": "^5.7.3",
"@changesets/cli": "^2.28.1",
"@changesets/changelog-github": "^0.5.1"
}
}