-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 4.13 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 4.13 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
89
{
"name": "chimera",
"private": true,
"version": "0.24.0",
"type": "module",
"scripts": {
"dev": "run-p -r web:devtools tauri:dev",
"tauri:dev": "tauri dev -c ./backend/tauri/tauri.conf.json",
"web:devtools": "pnpm react-devtools",
"web:dev": "pnpm --filter=chimera-ui dev",
"build": "tauri build",
"build:nightly": "tauri build -f nightly -c ./backend/tauri/tauri.nightly.conf.json",
"web:build": "pnpm --filter=chimera-ui build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "run-s lint:*",
"lint:oxlint": "oxlint .",
"lint:prettier": "prettier --check .",
"lint:styles": "stylelint --cache --allow-empty-input \"**/*.{css,scss}\"",
"lint:clippy": "cargo clippy --manifest-path ./backend/Cargo.toml --all-targets --all-features",
"typecheck": "run-p typecheck:*",
"typecheck:interface": "tsc -p frontend/interface/tsconfig.json --noEmit",
"typecheck:utils": "tsc -p frontend/utils/tsconfig.json --noEmit",
"typecheck:ui": "tsc -p frontend/ui/tsconfig.json --noEmit",
"typecheck:chimera": "tsc -p frontend/chimera/tsconfig.json --noEmit",
"typecheck:e2e": "pnpm --filter @chimera/tauri-e2e typecheck",
"verify:quality": "run-s lint typecheck",
"fmt": "run-s fmt:oxlint fmt:prettier fmt:backend",
"fmt:backend": "cargo fmt --manifest-path ./backend/Cargo.toml --package chimera-config --package chimera-core --package chimera-macro --package chimera",
"fmt:oxlint": "oxlint --fix .",
"fmt:prettier": "prettier --write .",
"knip": "knip",
"prepare": "husky",
"check": "tsx scripts/check.ts",
"check:service-runtime": "tsx scripts/check-service-runtime.ts",
"smoke:tun:windows": "powershell.exe -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Bypass -File ./scripts/windows-tun-smoke.ps1",
"lint:frontend-boundaries": "tsx scripts/check-frontend-boundaries.ts",
"publish": "tsx scripts/publish.ts",
"dev:diff": "run-p -r web:devtools tauri:diff",
"tauri:diff": "tauri dev -f verge-dev deadlock-detection -c ./backend/tauri/tauri.conf.json",
"generate:git-info": "tsx scripts/generate-git-info.ts",
"generate:manifest": "run-p generate:manifest:*",
"generate:manifest:latest-version": "deno run -A scripts/generate-latest-version.ts",
"generate:data-slots": "deno run -A scripts/extract-data-slots.ts",
"updater": "pnpm --filter @chimera/scripts exec tsx updater.ts",
"updater:nightly": "deno run -A scripts/updater-nightly.ts",
"prepare:nightly": "deno run -A scripts/prepare-nightly.ts",
"lint:rustfmt": "cargo fmt --manifest-path ./backend/Cargo.toml --package chimera-config --package chimera-core --package chimera-macro --package chimera -- --check",
"e2e:tauri:build": "run-s web:build e2e:tauri:build:rust",
"e2e:tauri:build:rust": "cross-env AWS_LC_SYS_PREBUILT_NASM=1 CARGO_TARGET_DIR=backend/target/e2e TAURI_CONFIG={\\\"build\\\":{\\\"devUrl\\\":null}} cargo build --manifest-path ./backend/tauri/Cargo.toml --features e2e",
"e2e:tauri:test": "pnpm --filter @chimera/tauri-e2e test",
"e2e:tauri": "run-s e2e:tauri:build e2e:tauri:test"
},
"dependencies": {
"husky": "9.1.7",
"@prettier/plugin-oxc": "0.2.2"
},
"devDependencies": {
"@tauri-apps/cli": "2.11.4",
"npm-run-all2": "9.0.3",
"react-devtools": "7.0.1",
"oxlint": "1.82.0",
"prettier": "3.9.6",
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"prettier-plugin-tailwindcss": "0.8.1",
"prettier-plugin-toml": "2.0.6",
"postcss-scss": "4.0.9",
"stylelint": "17.15.0",
"stylelint-config-html": "2.0.0",
"stylelint-config-recess-order": "7.8.0",
"stylelint-config-standard": "40.0.0",
"stylelint-declaration-block-no-ignored-properties": "3.0.0",
"stylelint-order": "8.1.1",
"stylelint-scss": "7.2.0",
"knip": "6.34.0",
"lint-staged": "17.5.0",
"@commitlint/cli": "21.2.2",
"@commitlint/config-conventional": "21.2.2",
"cross-env": "10.1.0",
"tsx": "4.23.13",
"@types/node": "24.13.3",
"typescript": "7.0.2",
"prettier-plugin-ember-template-tag": "2.1.8"
},
"packageManager": "pnpm@12.3.4",
"engines": {
"node": "v24.21.0"
}
}