-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.json
More file actions
62 lines (62 loc) · 1.43 KB
/
packages.json
File metadata and controls
62 lines (62 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
54
55
56
57
58
59
60
61
62
{
"name": "@metapay402/monorepo",
"version": "1.0.0",
"private": true,
"description": "MetaPay402 — Meta Payment Processing via X402. A cross-language SDK for autonomous payments between APIs, AI agents, and services using HTTP 402 and Solana micropayments.",
"author": "MetaPay402 Team",
"license": "MIT",
"homepage": "https://github.com/<your-username>/metapay402",
"repository": {
"type": "git",
"url": "https://github.com/<your-username>/metapay402.git"
},
"keywords": [
"metapay402",
"x402",
"meta",
"solana",
"micropayments",
"http402",
"ai-agents",
"blockchain-payments",
"langchain",
"express",
"fastapi"
],
"workspaces": [
"packages/typescript/*"
],
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm -r run dev",
"lint": "pnpm -r run lint",
"test": "pnpm -r run test",
"clean": "rm -rf dist node_modules pnpm-lock.yaml",
"prepare": "husky install"
},
"devDependencies": {
"typescript": "^5.4.0",
"ts-node": "^10.9.1",
"eslint": "^9.0.0",
"prettier": "^3.1.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0"
},
"lint-staged": {
"*.{js,ts,tsx,json,md}": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"typescript": "^5.4.0"
}
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"bugs": {
"url": "https://github.com/<your-username>/metapay402/issues"
}
}