-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.02 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.02 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@astra-cli/cli",
"version": "1.5.1",
"description": "The terminal for autonomous agents. Powered by AstraNova.",
"type": "module",
"bin": {
"astra": "bin/astra.js"
},
"engines": {
"node": ">=20.0.0"
},
"main": "./dist/astra.js",
"files": [
"dist/",
"bin/astra.js",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node dist/astra.js",
"start:debug": "node dist/astra.js --debug 2>debug.log",
"start:gpt": "ASTRA_PROVIDER=openai ASTRA_MODEL=gpt-4o-mini node dist/astra.js",
"start:gpt:debug": "ASTRA_PROVIDER=openai ASTRA_MODEL=gpt-4o-mini node dist/astra.js --debug 2>debug.log",
"start:claude:debug": "ASTRA_PROVIDER=claude ASTRA_MODEL=claude-haiku-4-5-20251001 node dist/astra.js --debug 2>debug.log",
"start:gemini:debug": "ASTRA_PROVIDER=google ASTRA_MODEL=gemini-2.5-flash node dist/astra.js --debug 2>debug.log",
"dev": "tsup --watch",
"build": "tsup",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run --exclude 'src/__tests__/integration/**' --exclude 'src/__tests__/e2e/**'",
"test:unit": "vitest run --exclude 'src/__tests__/integration/**' --exclude 'src/__tests__/e2e/**'",
"test:integration": "vitest run src/__tests__/integration/",
"test:e2e": "vitest run src/__tests__/e2e/",
"test:all": "vitest run",
"test:coverage": "vitest run --exclude 'src/__tests__/integration/**' --exclude 'src/__tests__/e2e/**' --coverage",
"prepublishOnly": "pnpm build",
"desktop:dev": "pnpm build && pnpm --filter @astra-cli/desktop dev",
"desktop:bundle": "npx tsup --config tsup.desktop.ts",
"desktop:build": "pnpm desktop:bundle && pnpm --filter @astra-cli/desktop build",
"desktop:package": "pnpm desktop:bundle && pnpm --filter @astra-cli/desktop package",
"tauri:dev": "pnpm --filter @astra-cli/tauri tauri:dev",
"tauri:build": "pnpm --filter @astra-cli/tauri tauri:build"
},
"author": "fermartz",
"repository": {
"type": "git",
"url": "git+https://github.com/fermartz/astra-cli.git"
},
"homepage": "https://github.com/fermartz/astra-cli",
"bugs": {
"url": "https://github.com/fermartz/astra-cli/issues"
},
"keywords": [
"astra-cli",
"astranova",
"cli",
"terminal",
"agent",
"autonomous",
"solana",
"plugin"
],
"license": "MIT",
"dependencies": {
"@ai-sdk/anthropic": "^1.2.0",
"@ai-sdk/google": "^1.2.0",
"@ai-sdk/openai": "^1.3.0",
"@solana/web3.js": "^1.98.4",
"ai": "^4.3.0",
"bs58": "^6.0.0",
"ink": "^6.8.0",
"ink-text-input": "^6.0.0",
"react": "^19.0.0",
"tweetnacl": "^1.0.3",
"zod": "^3.24.0",
"zod-to-json-schema": "^3.25.1"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.20.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.2.0",
"tsup": "^8.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.25.0",
"vitest": "^3.0.0"
}
}