-
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) · 902 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 902 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": "@paytaca/opencode-plugin",
"version": "0.1.4",
"description": "OpenCode plugin for Paytaca AI - AI inference provider powered by Bitcoin Cash micropayments",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"paytaca": "./bin/paytaca.js"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"keywords": [
"opencode",
"plugin",
"paytaca",
"bch",
"ai",
"provider"
],
"author": "Paytaca",
"license": "MIT",
"dependencies": {
"@opencode-ai/plugin": "^1.17.8",
"paytaca-cli": "^0.3.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"opencode": ">=1.0.0"
},
"peerDependenciesMeta": {
"opencode": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}