-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.44 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.44 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
89
90
91
92
93
{
"name": "semantic-docs",
"version": "1.3.4",
"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@10.20.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",
"db:init": "tsx --env-file=.env scripts/init-db.ts",
"db:init:local": "tsx scripts/init-db.ts",
"index": "tsx --env-file=.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 ."
},
"dependencies": {
"@astrojs/node": "^9.5.4",
"@astrojs/react": "^4.4.2",
"@libsql/client": "^0.17.0",
"@logan/libsql-search": "jsr:^0.1.3",
"@logan/logger": "jsr:^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@tailwindcss/vite": "^4.2.1",
"astro": "^5.17.3",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"lucide-react": "^0.577.0",
"marked": "^17.0.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sanitize-html": "^2.17.1",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"winston": "^3.19.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@llbbl/uncov": "0.1.4",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.4.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/sanitize-html": "^2.16.1",
"@vitest/browser": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"happy-dom": "^20.8.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"pnpm": {
"allowedBuilds": [
"sharp",
"@xenova/transformers"
],
"overrides": {
"sharp": "^0.34.4"
},
"onlyBuiltDependencies": [
"sharp",
"@xenova/transformers"
]
}
}