mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-22 16:07:49 +08:00
113 lines
4.5 KiB
JSON
113 lines
4.5 KiB
JSON
{
|
|
"name": "@nyanpasu/monorepo",
|
|
"version": "2.0.0",
|
|
"repository": "https://github.com/libnyanpasu/clash-nyanpasu.git",
|
|
"license": "GPL-3.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "run-p tauri:dev",
|
|
"dev:diff": "run-p tauri:diff",
|
|
"build": "tauri build",
|
|
"build:debug": "tauri build -f verge-dev deadlock-detection -d -c \"{ \\\"tauri\\\" : { \\\"updater\\\": { \\\"active\\\": false } }} \"",
|
|
"build:nightly": "tauri build -f nightly -c ./backend/tauri/tauri.nightly.conf.json",
|
|
"tauri": "tauri",
|
|
"tauri:dev": "tauri dev -c ./backend/tauri/tauri.conf.json",
|
|
"tauri:diff": "tauri dev -f verge-dev deadlock-detection -c ./backend/tauri/tauri.conf.json",
|
|
"tauri:preview": "pnpm prepare:preview && tauri dev -f verge-dev deadlock-detection -c ./backend/tauri/tauri.preview.conf.json",
|
|
"web:dev": "pnpm --filter=@nyanpasu/nyanpasu dev",
|
|
"web:build": "pnpm --filter=@nyanpasu/nyanpasu build",
|
|
"web:serve": "pnpm --filter=@nyanpasu/nyanpasu preview",
|
|
"web:visualize": "pnpm --filter=@nyanpasu/nyanpasu bundle:visualize",
|
|
"lint": "run-s lint:*",
|
|
"lint:prettier": "prettier --check .",
|
|
"lint:oxlint": "oxlint .",
|
|
"lint:styles": "stylelint --cache --allow-empty-input \"**/*.{css,scss}\"",
|
|
"lint:ts": "run-s lint:ts:*",
|
|
"lint:ts:scripts": "tsc --noEmit --project ./scripts/tsconfig.json",
|
|
"lint:ts:ui": "tsc --noEmit --project ./frontend/ui/tsconfig.json",
|
|
"lint:ts:interface": "tsc --noEmit --project ./frontend/interface/tsconfig.json",
|
|
"lint:ts:nyanpasu": "tsc --noEmit --project ./frontend/nyanpasu/tsconfig.json",
|
|
"lint:clippy": "cargo clippy --manifest-path ./backend/Cargo.toml --all-targets --all-features",
|
|
"lint:rustfmt": "cargo fmt --manifest-path ./backend/Cargo.toml --all -- --check",
|
|
"knip": "knip",
|
|
"test": "run-p test:*",
|
|
"test:backend": "cargo test --manifest-path ./backend/Cargo.toml --all-features",
|
|
"fmt": "run-p fmt:*",
|
|
"fmt:backend": "cargo fmt --manifest-path ./backend/Cargo.toml --all",
|
|
"fmt:prettier": "prettier --write .",
|
|
"fmt:oxlint": "oxlint --fix .",
|
|
"updater": "tsx scripts/updater.ts",
|
|
"updater:nightly": "tsx scripts/updater-nightly.ts",
|
|
"publish": "tsx scripts/publish.ts",
|
|
"portable": "tsx scripts/portable.ts",
|
|
"upload:osx-aarch64": "tsx scripts/osx-aarch64-upload.ts",
|
|
"generate:git-info": "tsx scripts/generate-git-info.ts",
|
|
"generate:manifest": "run-p generate:manifest:*",
|
|
"generate:manifest:latest-version": "deno run -A scripts/deno/generate-latest-version.ts",
|
|
"prepare": "husky",
|
|
"prepare:nightly": "tsx scripts/prepare-nightly.ts",
|
|
"prepare:release": "tsx scripts/prepare-release.ts",
|
|
"prepare:preview": "tsx scripts/prepare-preview.ts",
|
|
"prepare:check": "deno run -A scripts/deno/check.ts"
|
|
},
|
|
"dependencies": {
|
|
"@prettier/plugin-oxc": "0.1.3",
|
|
"husky": "9.1.7",
|
|
"lodash-es": "4.17.23"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "20.5.0",
|
|
"@commitlint/config-conventional": "20.5.0",
|
|
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
|
|
"@tauri-apps/cli": "2.10.1",
|
|
"@types/fs-extra": "11.0.4",
|
|
"@types/lodash-es": "4.17.12",
|
|
"@types/node": "24.11.0",
|
|
"autoprefixer": "10.4.27",
|
|
"conventional-changelog-conventionalcommits": "9.3.0",
|
|
"cross-env": "10.1.0",
|
|
"dedent": "1.7.2",
|
|
"globals": "17.4.0",
|
|
"knip": "6.0.6",
|
|
"lint-staged": "16.4.0",
|
|
"npm-run-all2": "8.0.4",
|
|
"oxlint": "1.57.0",
|
|
"postcss": "8.5.8",
|
|
"postcss-html": "1.8.1",
|
|
"postcss-import": "16.1.1",
|
|
"postcss-scss": "4.0.9",
|
|
"prettier": "3.8.1",
|
|
"prettier-plugin-ember-template-tag": "2.1.3",
|
|
"prettier-plugin-tailwindcss": "0.7.2",
|
|
"prettier-plugin-toml": "2.0.6",
|
|
"stylelint": "17.6.0",
|
|
"stylelint-config-html": "1.1.0",
|
|
"stylelint-config-recess-order": "7.7.0",
|
|
"stylelint-config-standard": "40.0.0",
|
|
"stylelint-declaration-block-no-ignored-properties": "3.0.0",
|
|
"stylelint-order": "8.1.1",
|
|
"stylelint-scss": "7.0.0",
|
|
"tailwindcss": "4.2.2",
|
|
"tsx": "4.21.0",
|
|
"typescript": "5.9.3"
|
|
},
|
|
"packageManager": "pnpm@10.33.0",
|
|
"engines": {
|
|
"node": "24.14.1"
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"vite-plugin-monaco-editor": "npm:vite-plugin-monaco-editor-new@1.1.3",
|
|
"material-react-table": "npm:@greenhat616/material-react-table@4.0.0"
|
|
},
|
|
"onlyBuiltDependencies": [
|
|
"@swc/core",
|
|
"@tailwindcss/oxide",
|
|
"core-js",
|
|
"esbuild",
|
|
"meta-json-schema",
|
|
"oxc-resolver"
|
|
]
|
|
}
|
|
}
|