-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.06 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "s-loop",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && node scripts/pack-pi-server.mjs",
"preview": "vite preview",
"test": "vitest run",
"test:server": "node --test src-tauri/pi-server/tests/*.test.mjs src-tauri/pi-server/subagent/*.test.mjs src-tauri/pi-server/goal-loop/test.mjs",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"tauri": "node scripts/with-native-build-env.mjs tauri",
"tauri:dev": "node scripts/with-native-build-env.mjs tauri dev",
"tauri:build": "node scripts/with-native-build-env.mjs tauri build",
"native:check": "node scripts/with-native-build-env.mjs cargo check --manifest-path src-tauri/Cargo.toml",
"native:test:speech": "node scripts/with-native-build-env.mjs cargo test --manifest-path stt/Cargo.toml --lib",
"publish:release": "node scripts/publish-release.mjs"
},
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@earendil-works/pi-agent-core": "^0.79.10",
"@earendil-works/pi-ai": "^0.80.3",
"@earendil-works/pi-coding-agent": "^0.80.3",
"@heroui/react": "^3.0.5",
"@sinclair/typebox": "^0.34.49",
"@tailwindcss/typography": "^0.5.19",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-sql": "^2.4.0",
"@uiw/react-codemirror": "^4.25.10",
"cheerio": "^1.0.0",
"clsx": "^2.1.1",
"cron-parser": "^4.9.0",
"framer-motion": "^12.40.0",
"i18next": "^26.2.0",
"i18next-browser-languagedetector": "^8.2.1",
"jszip": "^3.10.1",
"katex": "^0.16.22",
"lucide-react": "^0.500.0",
"mammoth": "^1.12.0",
"mermaid": "^11.15.0",
"nodemailer": "^9.0.1",
"pdfjs-dist": "^6.0.227",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^17.0.8",
"react-markdown": "^10.1.0",
"react-virtuoso": "^4.18.7",
"rehype-katex": "^7.0.1",
"rehype-mathjax": "^7.1.0",
"rehype-raw": "^7.0.0",
"remark-cjk-friendly": "^1.2.3",
"remark-gfm": "^4.0.1",
"remark-github-blockquote-alert": "^2.1.0",
"remark-math": "^6.0.0",
"shiki": "^3.23.0",
"tailwind-merge": "^3.6.0",
"unist-util-visit": "^5.1.0",
"xlsx": "^0.18.5",
"zustand": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.0",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/coverage-v8": "^4.1.9",
"jsdom": "^29.1.1",
"tailwindcss": "^4.1.0",
"typescript": "~5.8.3",
"vite": "^7.0.4",
"vitest": "^4.1.9"
}
}