-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.08 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
{
"name": "@oddofrancesco/codeview",
"version": "0.1.1",
"description": "Give coding agents local reference codebases for patterns, examples, and implementation guidance.",
"type": "module",
"packageManager": "bun@1.2.19",
"license": "Apache-2.0",
"author": "OxFrancesco",
"homepage": "https://github.com/OxFrancesco/codeview#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/OxFrancesco/codeview.git"
},
"bugs": {
"url": "https://github.com/OxFrancesco/codeview/issues"
},
"keywords": [
"ai",
"agents",
"cli",
"codebase",
"developer-tools"
],
"files": [
"src",
"README.md",
"LICENSE"
],
"bin": {
"codeview": "src/index.ts"
},
"engines": {
"bun": ">=1.2.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun src/index.ts",
"setup:global": "./scripts/setup.sh",
"test": "bun test --timeout 60000",
"typecheck": "bunx tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest"
},
"dependencies": {
"@opentui/core": "^0.4.3"
}
}