-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
152 lines (152 loc) · 4.17 KB
/
Copy pathpackage.json
File metadata and controls
152 lines (152 loc) · 4.17 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "schutz",
"displayName": "Schutz",
"description": "AI 편집을 실시간으로 멋지게 보여주는 AI 네이티브 IDE 경험 (Phase 1: VSCode 확장 프로토타입)",
"version": "0.0.1",
"publisher": "schutzscript",
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Machine Learning",
"Programming Languages",
"Other"
],
"keywords": [
"ai",
"agent",
"copilot",
"code editor",
"real-time"
],
"main": "./out/extension.js",
"activationEvents": [],
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "schutz",
"title": "Schutz",
"icon": "media/icon.svg"
}
]
},
"views": {
"schutz": [
{
"type": "webview",
"id": "schutz.chat",
"name": "Chat",
"icon": "media/icon.svg"
},
{
"type": "webview",
"id": "schutz.activity",
"name": "Agent Activity"
}
]
},
"commands": [
{
"command": "schutz.openChat",
"title": "Schutz: Open Chat",
"category": "Schutz"
},
{
"command": "schutz.runDemo",
"title": "Schutz: Run Demo Edit (Mock)",
"category": "Schutz"
},
{
"command": "schutz.runMultiFileDemo",
"title": "Schutz: Run Multi-file Demo (Mock)",
"category": "Schutz"
},
{
"command": "schutz.acceptAll",
"title": "Schutz: Accept All Pending Edits",
"category": "Schutz"
},
{
"command": "schutz.rejectAll",
"title": "Schutz: Reject All Pending Edits",
"category": "Schutz"
},
{
"command": "schutz.acceptTransaction",
"title": "Schutz: Accept Edit",
"category": "Schutz"
},
{
"command": "schutz.rejectTransaction",
"title": "Schutz: Reject Edit",
"category": "Schutz"
},
{
"command": "schutz.openMultiFileOverview",
"title": "Schutz: Open Multi-file Overview",
"category": "Schutz"
}
],
"configuration": {
"title": "Schutz",
"properties": {
"schutz.provider": {
"type": "string",
"enum": ["mock", "claude", "openai", "gemini", "local"],
"default": "mock",
"description": "사용할 AI 프로바이더. 백엔드 미정 단계에서는 'mock'으로 API 키 없이 동작합니다."
},
"schutz.model": {
"type": "string",
"default": "",
"description": "프로바이더별 모델 ID (비워두면 기본 모델)"
},
"schutz.claude.apiKey": {
"type": "string",
"default": "",
"markdownDescription": "Claude(Anthropic) API 키. 실험적 Claude 어댑터에서만 사용. ⚠️ settings에 평문 저장되므로 프로토타입 용도로만 사용하세요 (추후 SecretStorage로 이전 예정)."
},
"schutz.animation.typingSpeed": {
"type": "number",
"default": 12,
"description": "편집 스트리밍 애니메이션 속도 (틱당 문자 수). 낮을수록 느리고 극적."
},
"schutz.animation.glowDurationMs": {
"type": "number",
"default": 1200,
"description": "바뀐 라인 글로우가 유지되는 시간(ms)."
}
}
},
"menus": {
"commandPalette": [
{
"command": "schutz.acceptTransaction",
"when": "false"
},
{
"command": "schutz.rejectTransaction",
"when": "false"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run build:webview && npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"build:webview": "npm --prefix webview-ui install && npm --prefix webview-ui run build",
"build": "npm run build:webview && npm run compile",
"pretest": "npm run compile",
"test": "node test/smoke.js",
"lint": "eslint src --ext ts",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/vscode": "^1.85.0",
"typescript": "^5.4.0"
}
}