forked from yechielby/claude-code-rtl-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.34 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.34 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "rtl-support",
"displayName": "RTL Support",
"description": "Adds RTL (Right-to-Left) text support for Hebrew, Arabic and Persian to Claude Code in VS Code, Cursor, Antigravity and Kiro",
"version": "0.4.3",
"publisher": "Digitizers",
"license": "MIT",
"homepage": "https://github.com/Digitizers/vs-code-rtl-extension#readme",
"repository": {
"type": "git",
"url": "https://github.com/Digitizers/vs-code-rtl-extension"
},
"bugs": {
"url": "https://github.com/Digitizers/vs-code-rtl-extension/issues"
},
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Other",
"Language Packs"
],
"keywords": [
"arabic",
"arabic-language",
"bidi",
"bidirectional",
"claude-code",
"claude-code-plugin",
"cursor",
"cursor-extension",
"cursor-ide",
"cursor-plugin",
"antigravity",
"antigravity-extension",
"antigravity-ide",
"antigravity-plugin",
"kiro",
"kiro-extension",
"kiro-ide",
"kiro-plugin",
"farsi",
"farsi-language",
"hebrew",
"hebrew-language",
"persian",
"persian-language",
"rtl",
"rtl-support",
"vs-code",
"vs-code-extension",
"vscode",
"vscode-extension",
"right-to-left",
"text-direction",
"claude",
"anthropic",
"ai-chat"
],
"activationEvents": [
"onStartupFinished"
],
"badges": [
{
"url": "https://img.shields.io/github/stars/Digitizers/vs-code-rtl-extension?style=social",
"href": "https://github.com/Digitizers/vs-code-rtl-extension/stargazers",
"description": "Star on GitHub"
}
],
"icon": "rtl-support-logo.png",
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Claude Code RTL",
"properties": {
"claude-code-rtl.textFont": {
"type": "string",
"default": "",
"markdownDescription": "Font family for text/prose areas in Claude Code (e.g. `Vazirmatn`, `Tahoma`). Leave empty to keep Claude Code's default font."
},
"claude-code-rtl.codeFont": {
"type": "string",
"default": "",
"markdownDescription": "Font family for code blocks in Claude Code (e.g. `JetBrains Mono`, `Fira Code`). Leave empty to keep Claude Code's default font."
}
}
},
"commands": [
{
"command": "claude-rtl.add",
"title": "Claude RTL: Activate RTL"
},
{
"command": "claude-rtl.addAlways",
"title": "Claude RTL: Activate RTL (Always)"
},
{
"command": "claude-rtl.addAuto",
"title": "Claude RTL: Activate RTL (Auto)"
},
{
"command": "claude-rtl.remove",
"title": "Claude RTL: Deactivate RTL"
},
{
"command": "claude-rtl.fixBidi",
"title": "Claude RTL: Fix BiDi"
},
{
"command": "claude-rtl.status",
"title": "Claude RTL: Check Status"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "node esbuild.mjs --production",
"watch": "node esbuild.mjs --watch",
"pretest": "tsc -p tsconfig.test.json",
"test": "node test/concurrency.test.cjs",
"package": "npx @vscode/vsce package"
},
"devDependencies": {
"@types/vscode": "^1.94.0",
"@types/node": "^20.0.0",
"esbuild": "^0.24.0",
"typescript": "^5.7.0"
}
}