-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 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
48
49
50
51
52
53
{
"name": "tack",
"version": "0.2.6",
"private": true,
"description": "Pin to IPFS, pay with your wallet. No account needed.",
"scripts": {
"dev": "tsx watch src/index.ts",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"release:notes": "node scripts/extract-changelog-section.mjs",
"smoke:x402": "tsx src/scripts/x402-smoke.ts",
"usage:key": "tsx src/scripts/usage-api-key.ts",
"build:landing": "tsx scripts/build-landing.ts"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"@x402/core": "^2.6.0",
"@x402/evm": "^2.6.0",
"@x402/extensions": "^2.6.0",
"@x402/hono": "^2.6.0",
"better-sqlite3": "^11.8.1",
"hono": "^4.7.4",
"mppx": "^0.4.7",
"pino": "^9.6.0",
"ulid": "^3.0.2",
"viem": "^2.39.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"eslint": "^9.22.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.6.2",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}