-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.47 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.47 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
{
"name": "jargons.dev",
"version": "1.0.0",
"description": "A community-driven open source dictionary that provides clear, simplified definitions of software engineering concepts, development jargon, and general technology terms",
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:staged": "node dev/format-staged.js",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"setup": "node dev/setup.js",
"seed:jai": "node --env-file=.env dev/seed-vector-store.js",
"update:jai": "node --env-file=.env dev/update-vector-store.js",
"update:jai:ci": "node dev/update-vector-store.js",
"ping:qdrant": "node --env-file=.env dev/ping-qdrant-cluster.js",
"ping:qdrant:ci": "node dev/ping-qdrant-cluster.js"
},
"keywords": [
"dictionary",
"software",
"engineering",
"jargon",
"tech-terms",
"opensource",
"ai",
"development"
],
"author": "",
"license": "ISC",
"dependencies": {
"@ai-sdk/react": "^1.1.21",
"@astrojs/mdx": "^4.3.0",
"@astrojs/partytown": "^2.1.2",
"@astrojs/react": "^4.3.0",
"@astrojs/tailwind": "^5.1.5",
"@astrojs/vercel": "^8.2.1",
"@fontsource/ibm-plex-mono": "^5.0.12",
"@fontsource/inter": "^5.0.17",
"@langchain/openai": "^0.5.18",
"@langchain/qdrant": "^0.1.2",
"@nanostores/react": "^0.7.2",
"@octokit/auth-oauth-app": "^8.1.0",
"@octokit/oauth-authorization-url": "^7.1.0",
"ai": "^4.3.16",
"astro": "^5.16.11",
"flexsearch": "^0.7.43",
"gray-matter": "^4.0.3",
"js-cookie": "^3.0.5",
"langchain": "^0.3.37",
"nanostores": "^0.10.0",
"octokit": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1"
},
"devDependencies": {
"@octokit/request": "^9.2.4",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.8.0",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"happy-dom": "^20.0.11",
"msw": "^2.11.1",
"node-fetch": "^3.3.2",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^3.4.1",
"vitest": "^3.2.4"
}
}