@quantish/agent 0.1.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,68 @@
1
+ {
2
+ "name": "@quantish/agent",
3
+ "version": "0.1.0",
4
+ "description": "AI-powered agent for building trading bots on Polymarket",
5
+ "type": "module",
6
+ "bin": {
7
+ "quantish": "./dist/index.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsup src/index.ts --format esm --dts --clean",
16
+ "dev": "tsup src/index.ts --format esm --watch",
17
+ "start": "node dist/index.js",
18
+ "typecheck": "tsc --noEmit",
19
+ "prepublishOnly": "npm run build"
20
+ },
21
+ "keywords": [
22
+ "polymarket",
23
+ "trading",
24
+ "cli",
25
+ "ai",
26
+ "claude",
27
+ "agent",
28
+ "mcp",
29
+ "prediction-markets",
30
+ "polymarket-trading",
31
+ "ai-agent",
32
+ "trading-bot"
33
+ ],
34
+ "author": "Quantish <hello@quantish.live>",
35
+ "license": "MIT",
36
+ "publishConfig": {
37
+ "access": "public"
38
+ },
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/joinQuantish/quantish-agent.git"
42
+ },
43
+ "bugs": {
44
+ "url": "https://github.com/joinQuantish/quantish-agent/issues"
45
+ },
46
+ "homepage": "https://quantish.live",
47
+ "engines": {
48
+ "node": ">=18"
49
+ },
50
+ "dependencies": {
51
+ "@anthropic-ai/sdk": "^0.71.0",
52
+ "chalk": "^5.3.0",
53
+ "commander": "^12.1.0",
54
+ "conf": "^13.0.1",
55
+ "ink": "^5.0.1",
56
+ "ink-text-input": "^6.0.0",
57
+ "ink-spinner": "^5.0.0",
58
+ "ora": "^8.1.1",
59
+ "react": "^18.3.1"
60
+ },
61
+ "devDependencies": {
62
+ "@types/node": "^22.10.2",
63
+ "@types/react": "^18.3.18",
64
+ "tsup": "^8.3.5",
65
+ "typescript": "^5.7.2"
66
+ }
67
+ }
68
+