-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.19 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.19 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
{
"name": "irig106-studio",
"version": "0.1.0",
"type": "module",
"description": "IRIG 106 Chapter 10 file visualization and analysis tool",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:wasm": "cd crates/irig106-studio-wasm && wasm-pack build --target web --out-dir ../../src/wasm",
"build:all": "npm run build:wasm && npm run build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:rust": "cd crates/irig106-studio-core && cargo test",
"test:all": "npm run test && npm run test:rust",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"ci": "npm run lint && npm run format:check && npm run build && npm run test",
"tauri": "tauri"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/cli": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.6.0",
"eslint": "^10.1.0",
"happy-dom": "^20.8.9",
"prettier": "^3.8.1",
"typescript": "^5.5.0",
"typescript-eslint": "^8.57.2",
"vite": "^6.0.0",
"vitest": "^4.1.2"
}
}