-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.61 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 3.61 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "woss.io",
"author": "Daniel Maricic <daniel@woss.io>",
"license": "AGPL-3.0-only",
"private": true,
"type": "module",
"scripts": {
"dev": "svelte-kit sync && vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint . --cache --cache-location ./tmp/eslint --ext ./src/**/*.ts,./src/**/*.svelte",
"fmt:check": "prettier --check .",
"format": "prettier --write .",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:e2e": "playwright test",
"build-index": "vite-node --script src/scripts/build-index.ts"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.0",
"@sveltejs/adapter-node": "^5.5.4",
"@sveltejs/kit": "^2.65.2",
"@tailwindcss/vite": "^4.3.1",
"@types/better-sqlite3": "^7.6.13",
"@types/hast": "^3.0.4",
"@types/js-yaml": "^4.0.9",
"@types/markdown-it": "^14.1.2",
"@types/node": "25.9.2",
"@types/qrcode": "^1.5.6",
"@types/ua-parser-js": "^0.7.39",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-better-tailwindcss": "^4.6.0",
"eslint-plugin-svelte": "^3.19.0",
"globals": "^17.6.0",
"prettier": "^3.8.4",
"prettier-plugin-svelte": "^3.5.2",
"svelte": "^5.56.3",
"svelte-check": "^4.6.0",
"tailwindcss": "^4.3.1",
"turbo": "^2.10.2",
"typescript": "5.9.3",
"typescript-eslint": "^8.61.1",
"vite": "^8.0.16",
"vite-node": "^6.0.0",
"vitest": "^4.1.9"
},
"dependencies": {
"@ai-sdk/openai-compatible": "2.0.48",
"@datadog/browser-rum": "^7.3.0",
"@fontsource-variable/ibm-plex-sans": "^5.2.8",
"@fontsource/ibm-plex-mono": "^5.2.7",
"@huggingface/transformers": "^4.2.0",
"@langchain/textsplitters": "1.0.1",
"@logtape/file": "^2.1.5",
"@logtape/logtape": "^2.1.5",
"@logtape/pretty": "^2.1.5",
"@modelcontextprotocol/client": "2.0.0-alpha.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/auto-instrumentations-node": "^0.77.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.219.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.219.0",
"@opentelemetry/sdk-metrics": "^2.8.0",
"@opentelemetry/sdk-node": "^0.219.0",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/typography": "^0.5.20",
"ai": "^6.0.207",
"better-sqlite3": "12.10.0",
"copy-text-to-clipboard": "^3.2.2",
"dayjs": "^1.11.21",
"devalue": "^5.8.1",
"dotenv": "17.4.2",
"effect": "^3.21.3",
"geoip-country": "^5.0.202605270000",
"github-slugger": "2.0.0",
"highlight.js": "11.11.1",
"import-in-the-middle": "^3.1.0",
"isbot": "^5.1.43",
"isomorphic-dompurify": "^3.17.0",
"js-yaml": "^4.2.0",
"markdown-it": "^14.2.0",
"qrcode": "^1.5.4",
"rehype-highlight": "^7.0.2",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"satori": "^0.26.0",
"sv5ui": "^2.1.0",
"svelte-sonner": "^1.1.1",
"ua-parser-js": "^2.0.10",
"unified": "^11.0.5",
"usearch": "2.25.3",
"uuid": "^14.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^26",
"onFail": "download"
}
},
"packageManager": "pnpm@11.1.2"
}