-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.53 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
{
"name": "tonelag",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "MIT OR Apache-2.0",
"repository": "https://github.com/oddhap/tonelag",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"tauri": "tauri",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"typecheck": "tsc -b --pretty false",
"check": "pnpm lint && pnpm typecheck && pnpm test && cargo fmt --manifest-path src-tauri/Cargo.toml -- --check && cargo clippy --manifest-path src-tauri/Cargo.toml --all-targets -- -D warnings",
"bindings": "TS_RS_EXPORT_DIR=../src/bindings/generated cargo test --manifest-path src-tauri/Cargo.toml export_bindings"
},
"dependencies": {
"@tauri-apps/api": "2.11.1",
"@tauri-apps/plugin-dialog": "2.7.1",
"i18next": "25.6.0",
"jszip": "3.10.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-i18next": "16.3.5"
},
"devDependencies": {
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@types/node": "24.10.13",
"@eslint/js": "10.0.1",
"@vitejs/plugin-react": "6.0.3",
"eslint": "10.7.0",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "17.7.0",
"@tauri-apps/cli": "2.11.4",
"jsdom": "28.0.0",
"typescript": "6.0.3",
"typescript-eslint": "8.64.0",
"vite": "8.1.5",
"vitest": "4.1.0"
},
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=24"
}
}