-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.71 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
{
"name": "@solwarrior/x402-cli",
"version": "0.1.3",
"description": "A professional CLI tool for simulating and testing Solana x402 payments (micropayments between agents and APIs)",
"main": "dist/cli.js",
"bin": {
"x402-cli": "./dist/cli.js"
},
"types": "dist/cli.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"*.{json,md}\"",
"format:check": "prettier --check \"src/**/*.ts\" \"*.{json,md}\"",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"keywords": [
"solana",
"x402",
"micropayments",
"cli",
"blockchain",
"web3",
"x402-cli"
],
"author": {
"name": "Nishant",
"url": "https://x.com/warriorofsol"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sol-warrior/x402-cli.git"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@solana/web3.js": "^1.87.6",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^1.0.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}