-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.52 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
{
"name": "semantic-docs",
"version": "2.6.0",
"description": "Documentation theme with semantic vector search powered by libsql-search",
"type": "module",
"keywords": [
"documentation",
"docs",
"semantic-search",
"vector-search",
"theme",
"astro",
"turso"
],
"author": "llbbl",
"license": "MIT",
"packageManager": "pnpm@11.23.0",
"engines": {
"node": ">=22.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/llbbl/semantic-docs.git"
},
"bugs": {
"url": "https://github.com/llbbl/semantic-docs/issues"
},
"homepage": "https://github.com/llbbl/semantic-docs#readme",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"start": "node --env-file-if-exists=.env ./dist/server/entry.mjs",
"db:init": "tsx --env-file-if-exists=.env scripts/init-db.ts",
"db:init:local": "tsx scripts/init-db.ts",
"index": "tsx --env-file-if-exists=.env scripts/index-content.ts",
"index:local": "tsx scripts/index-content.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"uncov": "uncov",
"uncov:check": "uncov check",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"embeddings:offline": "tsx scripts/offline-embedding-server.ts",
"smoke": "tsx scripts/smoke-test.ts"
},
"dependencies": {
"@astrojs/node": "^11.1.5",
"@astrojs/react": "^6.0.5",
"@libsql/client": "^0.18.0",
"@logan/libsql-search": "jsr:^0.11.1",
"@radix-ui/react-dialog": "^1.1.23",
"@shikijs/langs": "^4.4.3",
"@tailwindcss/vite": "^4.3.3",
"astro": "^7.2.10",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"gray-matter": "^4.0.3",
"logan-logger": "^2.5.3",
"lucide-react": "^1.41.0",
"marked": "^18.0.11",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"sanitize-html": "^2.17.7",
"shiki": "^4.4.3",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.11",
"@llbbl/uncov": "0.1.4",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.6",
"@types/node": "^26.4.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@types/sanitize-html": "^2.16.1",
"@vitest/browser": "^4.1.11",
"@vitest/coverage-v8": "^4.1.11",
"@vitest/ui": "^4.1.11",
"happy-dom": "^20.14.0",
"tsx": "^4.23.13",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
}
}