-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) 路 1022 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) 路 1022 Bytes
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
{
"name": "tnova",
"version": "0.0.4",
"description": "An AI assistant that lives in your terminal",
"type": "module",
"files": [
"bin/*.js",
"src/*.js",
"src/sdk/*.js",
"src/sdk/brain/*.js",
".development/*.js"
],
"bin": {
"nova": "bin/nova.js"
},
"scripts": {
"test": "node --test",
"test:package": "node scripts/package-smoke.js",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thatonevikash/nova.git"
},
"homepage": "https://github.com/thatonevikash/nova#readme",
"bugs": {
"url": "https://github.com/thatonevikash/nova/issues"
},
"keywords": [
"ai",
"cli",
"terminal",
"assistant"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.127.0",
"@clack/prompts": "^1.8.1",
"@google/genai": "^2.23.0",
"chalk": "^6.0.0"
},
"engines": {
"node": ">=22.0.0"
}
}