nia-vault 0.0.1
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 +153 -0
- package/dist/index.js +82559 -0
- package/package.json +41 -0
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nia-vault",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "CLI app for querying local notes via Nia semantic search",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"vault": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "bun build ./src/index.ts --outdir ./dist --target node --format esm",
|
|
14
|
+
"dev": "bun run ./src/index.ts",
|
|
15
|
+
"changeset": "changeset",
|
|
16
|
+
"changeset:add": "changeset add",
|
|
17
|
+
"version": "changeset version",
|
|
18
|
+
"release": "bun run build && changeset publish",
|
|
19
|
+
"check": "biome check",
|
|
20
|
+
"check:types": "tsc --noEmit"
|
|
21
|
+
},
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=18.0.0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@biomejs/biome": "2.3.13",
|
|
27
|
+
"@changesets/cli": "^2.29.8",
|
|
28
|
+
"@types/bun": "latest",
|
|
29
|
+
"@types/node": "^25.1.0"
|
|
30
|
+
},
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"typescript": "^5"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@inquirer/prompts": "^8.2.0",
|
|
36
|
+
"marked": "^17.0.1",
|
|
37
|
+
"marked-terminal": "^7.3.0",
|
|
38
|
+
"meow": "^14.0.0",
|
|
39
|
+
"zod": "^4.3.6"
|
|
40
|
+
}
|
|
41
|
+
}
|