-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.27 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
{
"name": "@nanocollective/nanoterm",
"version": "1.0.0",
"description": "An ultra-lightweight AI terminal companion",
"packageManager": "pnpm@11.17.0",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsup src/index.ts --format esm --clean",
"prepublishOnly": "pnpm run build",
"pretest": "pnpm run test:types",
"test": "pnpm run test:ava",
"test:watch": "ava --watch",
"test:coverage": "pnpm run test:ava:coverage",
"check": "pnpm run test:all",
"lint": "pnpm run test:lint",
"format": "biome format --write .",
"test:all": "bash scripts/test.sh",
"test:format": "biome ci --formatter-enabled=true --linter-enabled=false --assist-enabled=false .",
"test:types": "tsc --noEmit",
"test:lint": "biome lint .",
"test:lint:fix": "biome lint --write --unsafe .",
"test:ava": "ava",
"test:ava:coverage": "c8 --reporter=text --reporter=json-summary ava",
"test:knip": "knip",
"test:audit": "pnpm audit --audit-level=high --ignore-unfixable",
"test:security": "semgrep scan --config auto --error"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nano-Collective/nanoterm.git"
},
"keywords": [
"terminal",
"cli",
"ai",
"llm",
"shell",
"companion"
],
"author": "Nano Collective",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nano-Collective/nanoterm/issues"
},
"homepage": "https://github.com/Nano-Collective/nanoterm#readme",
"dependencies": {
"@ai-sdk/anthropic": "^4.0.23",
"@ai-sdk/cohere": "^4.0.14",
"@ai-sdk/google": "^4.0.26",
"@ai-sdk/mistral": "^4.0.16",
"@ai-sdk/openai": "^4.0.22",
"@ai-sdk/openai-compatible": "^3.0.16",
"@inquirer/prompts": "^8.5.2",
"@nanocollective/prompt-scrub": "^1.0.0",
"ai": "^7.0.40",
"commander": "^15.0.0"
},
"devDependencies": {
"@ava/typescript": "^7.0.0",
"@biomejs/biome": "^2.5.5",
"@types/node": "^26.1.2",
"ava": "^8.0.1",
"c8": "^12.0.0",
"knip": "^6.29.0",
"tsup": "^8.5.1",
"tsx": "^4.23.1",
"typescript": "^7.0.2"
},
"bin": {
"nanoterm": "dist/index.js"
},
"type": "module",
"ava": {
"extensions": [
"ts"
],
"nodeArguments": [
"--no-warnings",
"--import=tsx"
],
"workerThreads": false,
"files": [
"tests/**/*.test.ts"
]
}
}