-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.22 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.22 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
{
"name": "threaded---contextual-ai-reader",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:full": "pnpm dev:worker & sleep 2 && pnpm dev",
"dev:worker": "wrangler dev --config wrangler.dev.toml",
"build": "vite build",
"preview": "vite preview",
"deploy:cf": "wrangler deploy",
"dev:cf": "wrangler dev",
"cli": "pnpm --filter @andypai/threaded start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.1",
"@ai-sdk/google": "^3.0.1",
"@ai-sdk/openai": "^3.0.1",
"@icons-pack/react-simple-icons": "^13.8.0",
"ai": "^6.0.3",
"ai-sdk-ollama": "^3.0.0",
"dedent": "^1.7.0",
"highlight.js": "^11.11.1",
"idb": "^8.0.3",
"katex": "^0.16.27",
"lucide-react": "^0.555.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-markdown": "^10.1.0",
"rehype-highlight": "7",
"rehype-katex": "7",
"remark-gfm": "^4.0.1",
"remark-math": "6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241230.0",
"@eslint/js": "^9.39.1",
"@tailwindcss/postcss": "^4.1.18",
"@types/dedent": "^0.7.2",
"@types/node": "^22.14.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"wrangler": "^4.54.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
}
}