-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.58 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
{
"name": "@knitli/plugin-codeweaver",
"version": "1.0.1",
"private": false,
"description": "Exquisite Context for AI Agents — Semantic code search MCP server with hybrid search, AST-level understanding, and intelligent chunking for 166+ languages.",
"author": {
"name": "Knitli Inc.",
"email": "hello@knitli.com"
},
"license": "MIT OR Apache-2.0",
"homepage": "https://knitli.com",
"keywords": [
"mcp",
"search",
"semantic",
"code-search",
"semantic-search",
"AST",
"indexing",
"code-intelligence",
"embeddings",
"vector-search",
"hybrid-search",
"codebase-analysis"
],
"repository": {
"type": "git",
"url": "https://github.com/knitli/toolshed",
"directory": "plugins/codeweaver"
},
"release": {
"branches": [
"main"
],
"tagFormat": "@knitli/codeweaver-v${version}",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"breaking": true,
"scope": "codeweaver",
"release": "major"
},
{
"scope": "codeweaver",
"type": "feat",
"release": "minor"
},
{
"scope": "codeweaver",
"type": "fix",
"release": "patch"
},
{
"scope": "codeweaver",
"type": "perf",
"release": "patch"
},
{
"breaking": true,
"scope": "cw",
"release": "major"
},
{
"scope": "cw",
"type": "feat",
"release": "minor"
},
{
"scope": "cw",
"type": "fix",
"release": "patch"
},
{
"scope": "cw",
"type": "perf",
"release": "patch"
},
{
"release": false
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github"
]
},
"userConfig": {
"VOYAGE_API_KEY": {
"type": "string",
"title": "Voyage AI API Key",
"description": "API key for Voyage AI embedding provider (get one at https://voyage.ai)",
"sensitive": true,
"required": false
}
}
}