-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 937 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 937 Bytes
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
{
"name": "quarrel-similar-notes",
"version": "0.0.2",
"description": "Find semantically similar notes using local TF-IDF. No API keys, no external calls.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"release": "npm run build && node scripts/release.mjs",
"release:version": "node scripts/release-version.mjs",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "vitest run"
},
"keywords": [
"obsidian",
"plugin",
"similarity",
"tfidf",
"related-notes"
],
"author": "watthem",
"license": "MIT",
"dependencies": {
"@watthem/quarrel": "^0.1.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"builtin-modules": "^4.0.0",
"esbuild": "^0.25.0",
"obsidian": "latest",
"tslib": "^2.8.0",
"typescript": "^5.7.0",
"vitest": "^1.6.0"
}
}