-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "devtools",
"private": true,
"scripts": {
"dev": "next dev --webpack -p 3000",
"prebuild": "npm run generate:llms",
"build": "next build",
"start": "serve out",
"lint": "tsc --noEmit",
"generate:og": "node scripts/generate-og-images.cjs",
"generate:llms": "tsx scripts/generate-llms.ts"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/js-yaml": "^4.0.9",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"tsx": "^4.23.12"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"ajv": "^8.17.1",
"baseline-browser-mapping": "^2.10.43",
"caniuse-lite": "^1.0.30001806",
"gpt-tokenizer": "^3.4.0",
"js-yaml": "^4.1.1",
"next": "^16.2.9",
"qrcode": "^1.5.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-syntax-highlighter": "^16.1.0",
"serve": "^14.2.6",
"smol-toml": "^1.7.0",
"sql-formatter": "^15.7.2",
"tiktoken": "^1.0.22"
}
}