forked from Cap-go/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.61 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.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
{
"type": "module",
"name": "capacitor-tutorial",
"scripts": {
"paraglide:compile": "paraglide-js compile --project ./project.inlang --outdir ./src/paraglide",
"postinstall": "bun run paraglide:compile",
"astro": "astro",
"dev": "tsx scripts/fix_code_languages_all.tsx && astro dev",
"start": "astro dev",
"build": "bun run paraglide:compile && tsx scripts/fix_code_languages_all.tsx && astro build && tsx ./scripts/repair_sitemap.tsx",
"preview": "astro preview",
"fmt": "prettier --write '**/*' --ignore-unknown",
"blogs:translate_all": "tsx scripts/blogs/translate_all.tsx",
"blogs:translate_untranslated": "tsx scripts/blogs/translate_untranslated.tsx",
"blogs:fix_locales_all": "tsx scripts/blogs/fix_locales_all.tsx",
"blogs:remove_mismatching_locales": "tsx scripts/blogs/remove_mismatching_locales.tsx",
"blogs:delete_broken_all": "tsx scripts/blogs/delete_broken_all.tsx",
"fix_code_languages_all": "tsx scripts/fix_code_languages_all.tsx",
"clean:unused": "npx tsx scripts/clean_not_used.tsx"
},
"dependencies": {
"@astrojs/sitemap": "^3.3.1",
"@langchain/community": "^0.3.34",
"@langchain/core": "^0.3.42",
"@langchain/openai": "^0.4.4",
"@langchain/textsplitters": "^0.1.0",
"@orama/wc-components": "^0.7.0",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.5",
"astro": "^5.7.10",
"astro-font": "^1.1.0",
"astro-heroicons": "^2.1.5-1",
"astro-i18n-aut": "^0.7.3",
"github-slugger": "^2.0.0",
"marked": "^7.0.5",
"mermaid": "^11.6.0",
"sitemap": "^8.0.0",
"striptags": "^3.2.0",
"tailwindcss": "^4.1.5",
"toastify-js": "^1.12.0"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.44.0",
"@iconify-json/carbon": "^1.2.7",
"@iconify-json/twemoji": "^1.2.2",
"@inlang/cli": "^3.0.0",
"@inlang/paraglide-js": "2.0.12",
"@octokit/rest": "^21.1.1",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^6.0.0",
"@types/node": "^22.13.0",
"@types/semver": "^7.5.8",
"@types/toastify-js": "^1.12.4",
"cheerio": "1.0.0",
"dayjs": "^1.11.13",
"faiss-node": "^0.5.1",
"fast-glob": "^3.3.3",
"fast-xml-parser": "^5.2.3",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"langchain": "^0.1.37",
"libnpmsearch": "^9.0.0",
"linkify-it": "^5.0.0",
"nanospinner": "^1.2.2",
"openai": "^4.86.2",
"prettier": "^3.5.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"tsx": "^4.19.4",
"typescript": "^5.7.3",
"zod": "^3.24.2"
}
}