-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.49 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
{
"name": "@nmrtn/blacktea",
"version": "0.1.4",
"description": "Spending controls for AI agents paying online.",
"license": "MIT",
"author": "Nicolas",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"blacktea": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./adapters": {
"types": "./dist/adapters/index.d.ts",
"import": "./dist/adapters/index.js"
}
},
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"build": "tsc -p tsconfig.build.json && chmod +x dist/cli.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"engines": {
"node": ">=20"
},
"dependencies": {
"commander": "^14.0.3",
"lru-cache": "^11.0.0",
"x402-fetch": "^1.2.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^20.14.0",
"tsx": "^4.16.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"keywords": ["ai-agents", "payments", "x402", "policy", "audit"],
"repository": {
"type": "git",
"url": "git+https://github.com/nmrtn/blacktea.git"
},
"bugs": {
"url": "https://github.com/nmrtn/blacktea/issues"
},
"homepage": "https://github.com/nmrtn/blacktea#readme"
}