-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.76 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
{
"name": "stemlm-app",
"description": "stemLM - a structured STEM learning overlay for Gemini",
"private": true,
"license": "MIT",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "node scripts/gen-icons.mjs && wxt",
"dev:firefox": "node scripts/gen-icons.mjs && wxt -b firefox",
"icons": "node scripts/gen-icons.mjs",
"build": "node scripts/gen-icons.mjs && wxt build",
"build:firefox": "node scripts/gen-icons.mjs && wxt build -b firefox",
"zip": "node scripts/gen-icons.mjs && wxt zip",
"compile": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"verify": "pnpm typecheck && pnpm test && pnpm build",
"release:chrome": "pnpm verify && pnpm zip",
"eval": "node scripts/eval/run-eval.mjs",
"postinstall": "wxt prepare"
},
"dependencies": {
"@dagrejs/dagre": "^3.1.1",
"dompurify": "^3.2.7",
"framer-motion": "^12.23.30",
"fuse.js": "^7.5.0",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.1",
"katex": "^0.16.25",
"mermaid": "^11.12.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"smiles-drawer": "^2.4.1",
"wavedrom": "^3.6.2",
"zustand": "^5.0.8"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@types/dompurify": "^3.0.5",
"@types/katex": "^0.16.7",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@wxt-dev/module-react": "^1.1.3",
"happy-dom": "^20.0.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.3.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"wxt": "^0.20.26"
},
"pnpm": {
"ignoredBuiltDependencies": ["core-js"]
}
}