-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.33 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.33 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
{
"name": "@acedatacloud/x402-client",
"version": "0.1.0",
"description": "X402 payment protocol client for AceDataCloud APIs",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./sdk": {
"import": "./dist/sdkAdapter.js",
"types": "./dist/sdkAdapter.d.ts"
},
"./solana": {
"import": "./dist/solana.js",
"types": "./dist/solana.d.ts"
},
"./evm": {
"import": "./dist/evm.js",
"types": "./dist/evm.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint src/",
"test": "vitest run",
"version:date": "node scripts/set-date-version.mjs",
"version:date:dry": "node scripts/set-date-version.mjs --dry-run",
"prepublishOnly": "node scripts/set-date-version.mjs && npm run build"
},
"peerDependencies": {
"@solana/web3.js": "^1.90.0"
},
"peerDependenciesMeta": {
"@solana/web3.js": {
"optional": true
}
},
"devDependencies": {
"@solana/web3.js": "^1.95.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/AceDataCloud/X402Client"
}
}