@jarkkojs/goosedump 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -5,12 +5,16 @@
|
|
|
5
5
|
`goosedump` is a coding agent context data browser. It builds on top of the
|
|
6
6
|
ideas of [`lllyasviel/VCC`](https://github.com/lllyasviel/VCC).
|
|
7
7
|
|
|
8
|
+
Features:
|
|
9
|
+
|
|
10
|
+
* BM25 keyword ranking for natural queries.
|
|
11
|
+
* Sublime text alike fuzzy matching.
|
|
12
|
+
|
|
8
13
|
## Build
|
|
9
14
|
|
|
10
15
|
```sh
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
meson test -C build
|
|
16
|
+
cargo build
|
|
17
|
+
cargo test
|
|
14
18
|
```
|
|
15
19
|
|
|
16
20
|
## Licensing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jarkkojs/goosedump",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Coding agent context data browser",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/jarkkojs/goosedump#readme",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"LICENSE-APACHE-2.0"
|
|
21
21
|
],
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@jarkkojs/goosedump-darwin-arm64": "0.1.
|
|
24
|
-
"@jarkkojs/goosedump-linux-x64": "0.1.
|
|
25
|
-
"@jarkkojs/goosedump-win32-x64": "0.1.
|
|
23
|
+
"@jarkkojs/goosedump-darwin-arm64": "0.1.3",
|
|
24
|
+
"@jarkkojs/goosedump-linux-x64": "0.1.3",
|
|
25
|
+
"@jarkkojs/goosedump-win32-x64": "0.1.3"
|
|
26
26
|
},
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"access": "public"
|