-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 2.77 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 2.77 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@redplanethq/core-cli",
"main": "dist/cli.js",
"version": "0.2.23",
"description": "AI task manager",
"keywords": [
"cli",
"ai"
],
"publishConfig": {
"access": "public"
},
"author": "RedPlanetHQ",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RedPlanetHQ/core-cli.git"
},
"homepage": "https://github.com/RedPlanetHQ/core-cli#readme",
"bugs": {
"url": "https://github.com/RedPlanetHQ/core-cli/issues"
},
"bin": {
"core-cli": "dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc && tsc-alias && chmod +x dist/cli.js",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test:all": "./scripts/test.sh",
"test:ava": "ava",
"test:ava:coverage": "c8 ava",
"test:format": "prettier --check .",
"test:types": "tsc --noEmit",
"test:lint": "eslint .",
"test:lint:fix": "eslint . --fix",
"test:knip": "knip",
"format": "prettier --write ."
},
"files": [
"dist",
"routines",
"source/app/prompts/main-prompt.md"
],
"dependencies": {
"@ai-sdk/openai-compatible": "2.0.0-beta.42",
"@anthropic-ai/tokenizer": "^0.0.4",
"@inkjs/ui": "2.0.0",
"@mishieck/ink-titled-box": "^0.3.0",
"@modelcontextprotocol/sdk": "^1.17.3",
"ai": "6.0.0-beta.130",
"cheerio": "^1.1.2",
"cli-highlight": "^2.1.11",
"cli-table3": "^0.6.5",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"ignore": "^7.0.5",
"ink": "^6.5.1",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-tab": "^5.2.0",
"ink-text-input": "^6.0.0",
"llama-tokenizer-js": "^1.2.2",
"react": "^19.0.0",
"systeminformation": "^5.27.10",
"tiktoken": "^1.0.22",
"undici": "^7.16.0",
"ws": "^8.18.0",
"xdg-basedir": "^5.1.0"
},
"devDependencies": {
"@ava/typescript": "^6.0.0",
"@eslint/js": "^9.38.0",
"@types/ink-text-input": "^2.0.5",
"@types/node": "^24.3.0",
"@types/react": "^19.0.0",
"@types/ws": "^8.18.1",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^6.4.1",
"c8": "^10.1.3",
"chalk": "^5.2.0",
"eslint": "^9.38.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"globals": "^16.4.0",
"ink-testing-library": "^4.0.0",
"knip": "^5.66.2",
"prettier": "^2.8.7",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.6",
"typescript": "^5.0.3",
"typescript-eslint": "^8.46.2"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--import=tsx",
"--no-warnings"
],
"files": [
"source/**/*.spec.ts",
"source/**/*.spec.tsx",
"!source/**/*-helpers.ts",
"!source/**/test-helpers.ts"
],
"workerThreads": false,
"serial": true,
"environmentVariables": {
"NODE_ENV": "test"
}
},
"prettier": "@vdemedes/prettier-config"
}