-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.08 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
{
"name": "chimera",
"private": true,
"version": "0.15.4",
"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",
"fmt": "run-p fmt:*",
"fmt:backend": "cargo fmt --manifest-path ./backend/Cargo.toml --all",
"fmt:oxlint": "oxlint --fix .",
"fmt:prettier": "prettier --write .",
"knip": "knip",
"prepare": "husky",
"check": "tsx scripts/check.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 --all -- --check"
},
"dependencies": {
"husky": "9.1.7",
"@prettier/plugin-oxc": "0.0.4"
},
"devDependencies": {
"@tauri-apps/cli": "2.11.2",
"npm-run-all2": "8.0.4",
"react-devtools": "6.1.5",
"oxlint": "1.69.0",
"prettier": "3.6.2",
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
"prettier-plugin-tailwindcss": "0.7.2",
"prettier-plugin-toml": "2.0.6",
"postcss-scss": "4.0.9",
"stylelint": "16.26.1",
"stylelint-config-html": "1.1.0",
"stylelint-config-recess-order": "7.4.0",
"stylelint-config-standard": "39.0.1",
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
"stylelint-order": "7.0.0",
"stylelint-scss": "6.12.1",
"knip": "5.80.2",
"lint-staged": "16.2.6",
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.3.1",
"tsx": "4.20.6",
"@types/node": "24.10.7",
"typescript": "5.9.3",
"prettier-plugin-ember-template-tag": "2.1.0"
},
"pnpm": {
"overrides": {
"material-react-table": "npm:@greenhat616/material-react-table@4.0.0"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"@tailwindcss/oxide",
"electron",
"esbuild",
"meta-json-schema",
"oxc-resolver"
]
},
"packageManager": "pnpm@11.0.9",
"engines": {
"node": "22.20.0"
}
}