-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.52 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
{
"name": "@tokenrip/cli",
"version": "1.7.0",
"description": "CLI and library for AI agents to create and share artifacts via Tokenrip",
"keywords": [
"ai-agents",
"agent-skills",
"claude",
"codex",
"openclaw",
"hermes",
"agentskills",
"cli",
"asset-sharing",
"agent-collaboration"
],
"homepage": "https://tokenrip.com",
"repository": {
"type": "git",
"url": "https://github.com/tokenrip/cli.git"
},
"type": "module",
"main": "dist/cjs/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"rip": "dist/cli.js"
},
"files": [
"dist",
"AGENTS.md",
"SKILL.md",
"SECURITY.md",
"references"
],
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json && node -e \"require('fs').writeFileSync('dist/cjs/package.json', '{\\\"type\\\":\\\"commonjs\\\"}')\"",
"dev": "tsc --watch",
"clean": "rm -rf dist"
},
"dependencies": {
"@noble/curves": "^2.2.0",
"axios": "^1.11.0",
"bech32": "^2.0.0",
"commander": "^12.1.0",
"fflate": "^0.8.2",
"form-data": "^4.0.1",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@types/mime-types": "^2.1.4",
"@types/node": "^22.10.7",
"typescript": "^5.7.3"
},
"bugs": {
"url": "https://github.com/tokenrip/tokenrip/issues"
},
"publishConfig": {
"access": "public"
},
"private": false,
"license": "MIT"
}