-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"name": "task",
"version": "0.1.0",
"private": true,
"workspaces": [
"app",
"owner",
"delta"
],
"type": "module",
"scripts": {
"start": "bun --cwd=app run tauri dev --config src-tauri/tauri.conf.dev.json",
"owner": "bun --cwd=owner run tauri dev --config src-tauri/tauri.conf.dev.json",
"delta": "bun --cwd=delta run tauri dev --config src-tauri/tauri.conf.dev.json",
"android": "bun --cwd=app run tauri android dev",
"tauri": "bun --cwd=app run tauri",
"coverage": "npx @7n/rules lint test --no-fix",
"test": "bun run --bun vitest run"
},
"devDependencies": {
"@7n/rules": "^1.89.2",
"@7n/rules-ci-github": "^2.2.1",
"@7n/rules-lang-js": "^0.25.3",
"@7n/rules-lang-rust": "^0.15.3",
"@nitra/cspell-dict": "^2.2.2",
"@nitra/eslint-config": "^3.10.3",
"@nitra/stylelint-config": "^1.4.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@vitest/coverage-v8": "^4.1.10",
"vitest": "^4.1.10"
},
"stylelint": {
"extends": "@nitra/stylelint-config"
},
"engines": {
"bun": ">=1.3",
"node": ">=24"
}
}