-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.75 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.75 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "arcpay",
"version": "0.2.2",
"description": "Complete SDK for autonomous commerce on Arc blockchain - Payments, Escrow, Streaming, Privacy & AI Agents",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./react": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./ai": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./voice": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:run": "vitest run",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.ts --network arc-testnet",
"deploy:local": "hardhat run scripts/deploy.ts --network hardhat",
"docs": "typedoc",
"docs:watch": "typedoc --watch"
},
"keywords": [
"arc",
"usdc",
"micropayments",
"x402",
"paymaster",
"gas-sponsorship",
"usyc",
"yield",
"blockchain",
"circle",
"stablecoin",
"ai-agent",
"autonomous-commerce",
"escrow",
"streaming-payments",
"privacy",
"stealth-address",
"payment-channels",
"react-hooks"
],
"author": "Himess",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Himess/arcpay"
},
"homepage": "https://arcpay.vercel.app",
"bugs": {
"url": "https://github.com/Himess/arcpay/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@circle-fin/adapter-viem-v2": "^1.2.0",
"@circle-fin/bridge-kit": "^1.3.0",
"@circle-fin/developer-controlled-wallets": "^10.0.1",
"@types/node-forge": "^1.3.14",
"ethers": "^6.16.0",
"node-forge": "^1.3.3",
"pino": "^10.2.0",
"pino-pretty": "^13.1.3",
"viem": "^2.44.4",
"x402": "^1.1.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@openzeppelin/contracts": "^5.4.0",
"@types/node": "^25.0.9",
"dotenv": "^17.2.3",
"hardhat": "^2.28.3",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typedoc": "^0.27.0",
"typedoc-plugin-markdown": "^4.4.0",
"typescript": "~5.7.3",
"vitest": "^4.0.17"
},
"peerDependencies": {
"express": ">=4.0.0",
"react": ">=18.0.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"react": {
"optional": true
}
}
}