@zabaca/lattice 0.1.0

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +398 -0
  3. package/dist/cli.js +2712 -0
  4. package/package.json +61 -0
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@zabaca/lattice",
3
+ "version": "0.1.0",
4
+ "description": "Human-initiated, AI-powered knowledge graph for markdown documentation",
5
+ "type": "module",
6
+ "bin": {
7
+ "lattice": "dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "build": "bun build src/cli.ts --outdir dist --target bun --packages external",
15
+ "dev": "bun run src/main.ts",
16
+ "test": "bun test",
17
+ "lattice": "bun run src/main.ts",
18
+ "prepublishOnly": "bun run build",
19
+ "release:patch": "bun test && bun pm version patch && bun publish && git push && git push --tags",
20
+ "release:minor": "bun test && bun pm version minor && bun publish && git push && git push --tags",
21
+ "release:major": "bun test && bun pm version major && bun publish && git push && git push --tags",
22
+ "release:dry": "bun publish --dry-run"
23
+ },
24
+ "keywords": [
25
+ "knowledge-graph",
26
+ "falkordb",
27
+ "documentation",
28
+ "markdown",
29
+ "ai",
30
+ "embeddings",
31
+ "semantic-search"
32
+ ],
33
+ "author": "Zabaca",
34
+ "license": "MIT",
35
+ "publishConfig": {
36
+ "access": "public"
37
+ },
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "https://github.com/Zabaca/lattice.git"
41
+ },
42
+ "dependencies": {
43
+ "@nestjs/common": "^10.0.0",
44
+ "@nestjs/config": "^3.0.0",
45
+ "@nestjs/core": "^10.0.0",
46
+ "chalk": "^5.3.0",
47
+ "commander": "^12.0.0",
48
+ "glob": "^10.3.0",
49
+ "gray-matter": "^4.0.3",
50
+ "ioredis": "^5.3.0",
51
+ "nest-commander": "^3.12.0",
52
+ "reflect-metadata": "^0.2.0",
53
+ "rxjs": "^7.8.0",
54
+ "voyageai": "^0.0.3-alpha",
55
+ "yaml": "^2.3.0",
56
+ "zod": "^3.22.0"
57
+ },
58
+ "devDependencies": {
59
+ "@types/bun": "latest"
60
+ }
61
+ }