-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 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
{
"name": "interactive-katex",
"version": "0.1.0",
"description": "Interactive KaTeX demo for Schrödinger equation with color-coded terms",
"type": "module",
"scripts": {
"dev": "vite",
"validate": "tsx scripts/validate-content.ts",
"build": "pnpm validate && tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"test": "tsx tests/export/test-export.ts",
"test:interactive": "tsx tests/export/test-export.ts && playwright test tests/e2e/test-html-interactivity.spec.ts",
"test:playwright": "playwright test"
},
"keywords": [
"katex",
"schrodinger",
"interactive",
"physics"
],
"author": "Piotr Migdał",
"license": "MIT",
"packageManager": "pnpm@10.19.0",
"devDependencies": {
"@playwright/test": "^1.56.1",
"@types/node": "^24.9.2",
"@types/prismjs": "^1.26.5",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "^9.39.0",
"playwright": "^1.56.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.1.12"
},
"dependencies": {
"@vitejs/plugin-vue": "^6.0.2",
"codejar": "^4.3.0",
"katex": "^0.16.25",
"plausible-tracker": "^0.3.9",
"prismjs": "^1.30.0",
"tex2typst": "^0.4.1",
"vue": "^3.5.25"
}
}