-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.13 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.13 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
{
"name": "ruby-reader",
"displayName": "ruby-reader",
"description": "LLM tool which aim to read large ruby codebase",
"version": "1.0.8",
"type": "commonjs",
"icon": "logo.png",
"engines": {
"vscode": "^1.100.0"
},
"author": {
"name": "Kazuya Kurihara"
},
"license": "MIT",
"publisher": "coffeecupjapan",
"repository": {
"type": "git",
"url": "https://github.com/YmBIgo/ruby-reader"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:ruby-reader.helloWorld",
"onCommand:ruby-reader.openInNewTab"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "ruby-reader.helloWorld",
"title": "Hello World"
},
{
"command": "ruby-reader.openInNewTab",
"title": "Open Ruby Reader Tab"
}
],
"languages": [
{
"id": "ruby",
"aliases": [
"Ruby"
],
"extensions": [
".rb"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.100.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.25.1",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.7",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"@google/genai": "^1.4.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"ajv": "^8.17.1",
"bufferutil": "^4.0.9",
"glob": "^11.0.3",
"openai": "^5.0.1",
"p-wait-for": "^5.0.2",
"utf-8-validate": "^6.0.5",
"vscode-languageclient": "^9.0.1"
}
}