agentstore 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "agentstore",
3
+ "version": "1.0.0",
4
+ "description": "AgentStore CLI - Browse, install, and pay for Claude Code agents",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "agentstore": "./dist/index.js"
9
+ },
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "dev": "tsx src/index.ts",
13
+ "start": "node dist/index.js",
14
+ "prepublishOnly": "npm run build"
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md"
19
+ ],
20
+ "keywords": [
21
+ "claude",
22
+ "claude-code",
23
+ "mcp",
24
+ "agents",
25
+ "marketplace",
26
+ "ai",
27
+ "cli",
28
+ "plugins",
29
+ "usdc",
30
+ "x402",
31
+ "anthropic",
32
+ "agent-marketplace",
33
+ "claude-plugins"
34
+ ],
35
+ "author": "AgentStore",
36
+ "license": "MIT",
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "https://github.com/techgangboss/agentstore.git",
40
+ "directory": "packages/cli"
41
+ },
42
+ "homepage": "https://agentstore.tools",
43
+ "bugs": {
44
+ "url": "https://github.com/techgangboss/agentstore/issues"
45
+ },
46
+ "dependencies": {
47
+ "commander": "^12.0.0",
48
+ "keytar": "^7.9.0",
49
+ "viem": "^2.0.0"
50
+ },
51
+ "devDependencies": {
52
+ "@types/node": "^20.0.0",
53
+ "tsx": "^4.0.0",
54
+ "typescript": "^5.3.0"
55
+ },
56
+ "engines": {
57
+ "node": ">=18"
58
+ },
59
+ "publishConfig": {
60
+ "access": "public"
61
+ }
62
+ }