-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2.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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "task",
"version": "0.1.0",
"private": true,
"workspaces": [
"app",
"owner"
],
"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",
"android": "bun --cwd=app run tauri android dev",
"tauri": "bun --cwd=app run tauri",
"lint": "bun run lint-js && bun run lint-text && bun run lint-style && bun run lint-ga && bun run lint-rust && bun run lint-image && bun run lint-security && oxfmt .",
"lint-rust": "cargo fmt --all --manifest-path app/src-tauri/Cargo.toml && cargo clippy --manifest-path app/src-tauri/Cargo.toml --fix --allow-staged --allow-dirty --all-targets --all-features && cargo clippy --manifest-path app/src-tauri/Cargo.toml --all-targets --all-features -- -D warnings && cargo fmt --all --manifest-path owner/src-tauri/Cargo.toml && cargo clippy --manifest-path owner/src-tauri/Cargo.toml --fix --allow-staged --allow-dirty --all-targets --all-features && cargo clippy --manifest-path owner/src-tauri/Cargo.toml --all-targets --all-features -- -D warnings",
"lint-ga": "n-cursor lint ga",
"lint-image": "npx @nitra/minify-image --src=. --write",
"lint-js": "bunx oxlint --fix && bunx eslint --fix . && bunx jscpd . && bunx knip --no-config-hints",
"lint-security": "trufflehog filesystem . --no-update --exclude-paths .trufflehog-exclude --results=verified,unknown --fail",
"lint-style": "npx stylelint '**/*.{css,scss,vue}' --fix",
"lint-text": "n-cursor lint text",
"coverage": "n-cursor coverage",
"test": "vitest run"
},
"devDependencies": {
"@7n/rules": "^1.33.0",
"@7n/rules-ci-github": "^1.7.1",
"@7n/rules-lang-js": "^0.7.1",
"@7n/rules-lang-rust": "^0.6.1",
"@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"
},
"dependencies": {
"@7n/tauri-components": "^0.13.0"
}
}