-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.56 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
{
"name": "@metisos/rosetta-context",
"version": "1.5.0",
"description": "Agent-first codebase context protocol - AI agents build and share institutional knowledge about codebases",
"main": "dist/index.js",
"bin": {
"rosetta": "./dist/cli/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli/index.js",
"test": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"keywords": [
"ai",
"agents",
"coding-assistant",
"documentation",
"context",
"claude",
"claude-code",
"codex",
"cursor",
"aider",
"copilot",
"llm",
"codebase",
"developer-tools"
],
"author": "Christian Johnson <cjohnson@metisos.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/metisos/Rosetta_Open_Source.git"
},
"bugs": {
"url": "https://github.com/metisos/Rosetta_Open_Source/issues"
},
"homepage": "https://github.com/metisos/Rosetta_Open_Source#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0",
"glob": "^10.3.10",
"inquirer": "^8.2.7",
"ora": "^5.4.1",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/inquirer": "^8.2.12",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^9.13.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2",
"vitest": "^1.0.0"
}
}