-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.59 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.59 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
{
"name": "elastik-vscode",
"displayName": "Elastik",
"description": "VS Code client for the Elastik human-AI interaction protocol",
"version": "0.1.0",
"publisher": "rangersui",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rangersui/elastik-vscode"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": ["Other"],
"activationEvents": ["onStartupFinished"],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "elastik.togglePanel",
"title": "Elastik: Toggle Panel"
},
{
"command": "elastik.switchWorld",
"title": "Elastik: Switch World"
},
{
"command": "elastik.syncNow",
"title": "Elastik: Sync Now"
},
{
"command": "elastik.enable",
"title": "Elastik: Enable"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "elastik",
"title": "Elastik",
"icon": "$(broadcast)"
}
]
},
"views": {
"elastik": [
{
"type": "webview",
"id": "elastik.panel",
"name": "Stage"
}
]
},
"configuration": {
"title": "Elastik",
"properties": {
"elastik.url": {
"type": "string",
"default": "http://localhost:3004",
"description": "Elastik server URL"
},
"elastik.enabled": {
"type": "boolean",
"default": true,
"description": "Enable Elastik context sync"
},
"elastik.filterMode": {
"type": "string",
"enum": ["blacklist", "whitelist"],
"default": "blacklist",
"description": "Security filter mode. Blacklist excludes sensitive files by default. Whitelist only syncs explicitly listed patterns."
},
"elastik.blacklist": {
"type": "array",
"items": { "type": "string" },
"default": [],
"description": "Additional file patterns to exclude (on top of built-in sensitive file patterns like .env, *.pem, *secret*)"
},
"elastik.whitelist": {
"type": "array",
"items": { "type": "string" },
"default": [],
"description": "File patterns to sync in whitelist mode (e.g. [\"*.py\", \"*.ts\", \"src/**\"])"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
}
}