@astranova-live/cli 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/LICENSE +21 -0
- package/README.md +204 -0
- package/dist/astra.js +4085 -0
- package/package.json +74 -0
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@astranova-live/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Terminal agent for the AstraNova living market universe",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"astra": "./dist/astra.js"
|
|
8
|
+
},
|
|
9
|
+
"engines": {
|
|
10
|
+
"node": ">=18.0.0"
|
|
11
|
+
},
|
|
12
|
+
"main": "./dist/astra.js",
|
|
13
|
+
"files": [
|
|
14
|
+
"dist/astra.js",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"start": "node dist/astra.js",
|
|
20
|
+
"start:debug": "node dist/astra.js --debug 2>debug.log",
|
|
21
|
+
"start:gpt": "ASTRA_PROVIDER=openai ASTRA_MODEL=gpt-4o-mini node dist/astra.js",
|
|
22
|
+
"start:gpt:debug": "ASTRA_PROVIDER=openai ASTRA_MODEL=gpt-4o-mini node dist/astra.js --debug 2>debug.log",
|
|
23
|
+
"dev": "tsup --watch",
|
|
24
|
+
"build": "tsup",
|
|
25
|
+
"lint": "eslint src/",
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"test": "vitest run",
|
|
28
|
+
"prepublishOnly": "pnpm build"
|
|
29
|
+
},
|
|
30
|
+
"author": "fermartz",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/fermartz/astra-cli.git"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://github.com/fermartz/astra-cli",
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/fermartz/astra-cli/issues"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"astranova",
|
|
41
|
+
"cli",
|
|
42
|
+
"terminal",
|
|
43
|
+
"agent",
|
|
44
|
+
"solana"
|
|
45
|
+
],
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@ai-sdk/anthropic": "^1.2.0",
|
|
49
|
+
"@ai-sdk/google": "^1.2.0",
|
|
50
|
+
"@ai-sdk/openai": "^1.3.0",
|
|
51
|
+
"@clack/prompts": "^0.9.1",
|
|
52
|
+
"@solana/web3.js": "^1.98.4",
|
|
53
|
+
"ai": "^4.3.0",
|
|
54
|
+
"bs58": "^6.0.0",
|
|
55
|
+
"ink": "^5.2.0",
|
|
56
|
+
"ink-text-input": "^6.0.0",
|
|
57
|
+
"react": "^18.3.1",
|
|
58
|
+
"tweetnacl": "^1.0.3",
|
|
59
|
+
"zod": "^3.24.0",
|
|
60
|
+
"zod-to-json-schema": "^3.25.1"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@eslint/js": "^9.20.0",
|
|
64
|
+
"@types/node": "^22.0.0",
|
|
65
|
+
"@types/react": "^18.3.0",
|
|
66
|
+
"eslint": "^9.20.0",
|
|
67
|
+
"eslint-plugin-react": "^7.37.0",
|
|
68
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
69
|
+
"tsup": "^8.4.0",
|
|
70
|
+
"typescript": "^5.7.0",
|
|
71
|
+
"typescript-eslint": "^8.25.0",
|
|
72
|
+
"vitest": "^3.0.0"
|
|
73
|
+
}
|
|
74
|
+
}
|