-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 996 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 996 Bytes
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
{
"name": "@agenttax/mppx",
"version": "1.1.0",
"description": "Tax middleware for MPP machine payments — sales tax + capital gains for AI agent transactions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"mpp",
"tax",
"machine-payments",
"ai-agents",
"sales-tax",
"capital-gains",
"x402",
"agenttax"
],
"author": "Agentic Tax Solutions LLC",
"license": "MIT",
"homepage": "https://agenttax.io",
"repository": {
"type": "git",
"url": "https://github.com/AgentTax/agenttax-mppx.git"
},
"peerDependencies": {
"mppx": ">=0.4.0"
},
"dependencies": {
"geoip-lite": "^1.4.10"
},
"devDependencies": {
"@types/geoip-lite": "^1.4.4",
"@types/node": "^25.5.0",
"mppx": "^0.4.8",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
}
}