-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.62 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
{
"name": "kystudy",
"private": true,
"version": "0.1.4",
"license": "GPL-3.0-only",
"type": "module",
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=22.18.0"
},
"scripts": {
"dev": "vite",
"build": "pnpm typecheck && vite build",
"format": "prettier --check package.json index.html eslint.config.js tsconfig.json vite.config.ts vitest.config.ts README.md docs/DEVELOPMENT_WORKFLOW.md docs/V0_1_0_DEVELOPMENT_HANDOFF.md docs/V0_1_0_FINAL_ACCEPTANCE.md scripts/audit-css.mjs scripts/css-audit-core.mjs scripts/css-audit-core.test.mjs scripts/check-targets.mjs .github src src-tauri/capabilities src-tauri/tauri.conf.json src-tauri/tauri.release.conf.json",
"format:write": "prettier --write package.json index.html eslint.config.js tsconfig.json vite.config.ts vitest.config.ts README.md docs/DEVELOPMENT_WORKFLOW.md docs/V0_1_0_DEVELOPMENT_HANDOFF.md docs/V0_1_0_FINAL_ACCEPTANCE.md scripts/audit-css.mjs scripts/css-audit-core.mjs scripts/css-audit-core.test.mjs scripts/check-targets.mjs .github src src-tauri/capabilities src-tauri/tauri.conf.json src-tauri/tauri.release.conf.json",
"lint": "eslint . --max-warnings 0",
"test": "vitest run",
"audit:css": "node scripts/audit-css.mjs",
"test:css-audit": "node --test scripts/css-audit-core.test.mjs",
"check:target": "node scripts/check-targets.mjs",
"package:windows-portable": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/package-windows-portable.ps1 -ExecutablePath src-tauri/target/release/kystudy.exe -OutputArchive artifacts/kystudy-windows-x64-portable.zip -Version 0.1.4",
"typecheck": "tsc --noEmit",
"check": "pnpm format && pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"tauri": "tauri"
},
"dependencies": {
"@assistant-ui/react": "0.15.14",
"@fontsource-variable/material-symbols-rounded": "5.3.3",
"@lobehub/icons": "5.16.0",
"@tauri-apps/api": "2.11.1",
"@tauri-apps/plugin-opener": "2.5.4",
"@tauri-apps/plugin-updater": "2.10.1",
"katex": "0.16.47",
"mind-elixir": "5.13.0",
"pdfjs-dist": "6.1.200",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-markdown": "10.1.0",
"rehype-katex": "7.0.1",
"remark-gfm": "4.0.1",
"remark-math": "6.0.0"
},
"devDependencies": {
"@tauri-apps/cli": "2.11.4",
"@types/node": "26.1.1",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.3",
"eslint": "10.7.0",
"eslint-plugin-react-hooks": "7.1.1",
"prettier": "3.9.5",
"typescript": "6.0.3",
"typescript-eslint": "8.64.0",
"vite": "8.1.5",
"vitest": "4.1.10"
}
}