-
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.44 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.44 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": "codescope-ai",
"displayName": "CodeScope AI",
"description": "Search deeper. Know your codebase.",
"version": "2.0.0",
"publisher": "codescope",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other",
"Programming Languages"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "codescope.search",
"title": "Search",
"category": "CodeScope",
"icon": "$(search)",
"enableCommand": true
},
{
"command": "codescope.reindex",
"title": "Reindex Workspace",
"category": "CodeScope",
"icon": "$(refresh)",
"enableCommand": true
}
],
"configuration": {
"title": "CodeScope AI",
"properties": {
"codescope.excludePatterns": {
"type": "array",
"default": [
"**/node_modules/**",
"**/.git/**",
"**/dist/**",
"**/build/**",
"**/.vscode/**"
],
"description": "Glob patterns for files/folders to exclude from indexing"
},
"codescope.enableSemanticSearch": {
"type": "boolean",
"default": false,
"description": "Enable semantic search (experimental)"
},
"codescope.indexOnStartup": {
"type": "boolean",
"default": true,
"description": "Automatically index workspace on startup"
},
"codescope.maxFileSize": {
"type": "number",
"default": 10485760,
"description": "Maximum file size to index (in bytes, default 10MB)"
}
}
},
"views": {
"explorer": [
{
"id": "codescopeResults",
"name": "CodeScope Results",
"when": "codescope.hasResults"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile"
},
"devDependencies": {
"@types/sql.js": "^1.4.5",
"@types/node": "^20.0.0",
"@types/vscode": "^1.80.0",
"typescript": "^5.0.0"
},
"dependencies": {
"sql.js": "^1.10.3",
"chokidar": "^3.5.3",
"glob": "^10.0.0"
},
"optionalDependencies": {
"tree-sitter": "^0.20.4",
"tree-sitter-javascript": "^0.20.1",
"tree-sitter-python": "^0.20.4",
"tree-sitter-typescript": "^0.20.3"
}
}