-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.05 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.05 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
{
"name": "@trustless-work/skill",
"version": "1.1.2",
"description": "AI skill installer and integration verifier for Trustless Work (Escrow-as-a-Service on Stellar)",
"type": "module",
"bin": {
"trustless-work-skill": "./bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js",
"test": "node --test src/__tests__/verify.test.js",
"lint": "eslint src/ bin/"
},
"dependencies": {
"@inquirer/prompts": "^5.1.2",
"chalk": "^5.3.0",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"ora": "^8.0.1"
},
"devDependencies": {
"eslint": "^9.9.0"
},
"files": [
"bin/",
"src/",
"skill/"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"trustless-work",
"escrow",
"stellar",
"soroban",
"ai-skill",
"claude-code",
"gemini-cli",
"gemini",
"agent-skill"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Trustless-Work/trustless-work-skill"
},
"homepage": "https://docs.trustlesswork.com/trustless-work/"
}