-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.63 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.63 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
{
"name": "docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3002",
"build": "next build",
"algolia-index-cleanup": "node bin/algolia-index-cleanup.js",
"start": "next start",
"export": "next export",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore",
"type-check": "tsc",
"format": "prettier \"**/*.+(ts|js|tsx|mdx|md)\"",
"format.write": "yarn run format --write",
"format.check": "yarn run format --check",
"generate-llms": "yarn run open-api-to-md && tsx scripts/generateApiMarkdown.ts && tsx scripts/generateLlmsTxt.ts",
"generate-reference-md": "tsx scripts/generateApiMarkdown.ts",
"index-apis": "tsx scripts/indexApisForSearch.ts",
"open-api-to-md": "bash scripts/openApiToMd.sh",
"split-specs": "tsx scripts/splitOpenApiSpec.ts",
"predev": "yarn split-specs && yarn generate-llms",
"prebuild": "yarn split-specs && yarn generate-llms && yarn index-apis"
},
"dependencies": {
"@algolia/autocomplete-js": "^1.6.3",
"@algolia/autocomplete-theme-classic": "^1.6.3",
"@byteclaw/use-event-emitter": "^1.0.2",
"@inkeep/cxkit-react": "^0.5.86",
"@scalar/openapi-parser": "^0.10.9",
"@scalar/openapi-types": "^0.1.9",
"@segment/snippet": "^5.2.1",
"@tailwindcss/typography": "^0.5.4",
"@telegraph/appearance": "^0.0.12",
"@telegraph/button": "^0.0.83",
"@telegraph/icon": "^0.1.0",
"@telegraph/input": "^0.0.48",
"@telegraph/kbd": "^0.0.47",
"@telegraph/layout": "^0.1.21",
"@telegraph/menu": "^0.0.71",
"@telegraph/popover": "^0.0.28",
"@telegraph/segmented-control": "^0.0.43",
"@telegraph/select": "^0.0.51",
"@telegraph/tabs": "^0.0.11",
"@telegraph/tag": "^0.0.91",
"@telegraph/textarea": "^0.0.24",
"@telegraph/tokens": "^0.0.22",
"@telegraph/tooltip": "^0.0.52",
"@telegraph/typography": "^0.1.21",
"@vercel/og": "^0.5.20",
"algoliasearch": "^4.13.0",
"deepmerge": "^4.3.1",
"eventemitter": "^0.3.3",
"framer-motion": "^12.7.4",
"isomorphic-unfetch": "3.1.0",
"js-cookie": "^3.0.5",
"js-yaml": "4.1.1",
"jsonpointer": "^5.0.1",
"locale-codes": "^1.3.1",
"lodash": "^4.17.21",
"lucide-react": "^0.525.0",
"mdast-util-to-hast": "13.2.1",
"next": "^16.2.2",
"next-mdx-remote": "^6.0.0",
"next-remote-refresh": "^0.10.1",
"next-seo": "^5.4.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hotkeys-hook": "^3.4.6",
"react-icons": "5.2.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.4.3",
"rehype-mdx-code-props": "^2.0.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"safe-stringify": "^1.1.1",
"streamdown": "^2.0.1",
"tailwindcss-radix": "^2.5.0",
"unified": "^11.0.5",
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/gtag.js": "^0.0.5",
"@types/js-cookie": "^3.0.6",
"@types/node": "^14.14.32",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.57.0",
"openapi-to-md": "^1.0.25",
"postcss": "^8.4.31",
"prettier": "^2.3.2",
"rehype-autolink-headings": "^7.0.0",
"strip-ansi": "^6.0.1",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.2.2"
},
"resolutions": {
"react-syntax-highlighter/**/prismjs": "^1.30.0",
"form-data": "4.0.4",
"js-yaml": "4.1.1",
"mdast-util-to-hast": "13.2.1",
"merge-anything": "6.0.5"
}
}