Files
Archive/clash-nyanpasu/package.json
T
2024-03-23 19:27:35 +01:00

159 lines
5.1 KiB
JSON

{
"name": "clash-nyanpasu",
"version": "1.5.0",
"license": "GPL-3.0",
"type": "module",
"scripts": {
"dev": "tauri dev -c ./backend/tauri/tauri.conf.json",
"dev:diff": "tauri dev -f verge-dev deadlock-detection -c ./backend/tauri/tauri.conf.json",
"build": "tauri build -c ./backend/tauri/tauri.conf.json",
"build:nightly": "tauri build -f deadlock-detection nightly -c ./backend/tauri/tauri.nightly.conf.json",
"tauri": "tauri",
"web:dev": "vite",
"web:build": "vite build",
"web:serve": "vite preview",
"lint": "run-s lint:*",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint --cache .",
"lint:styles": "stylelint --cache --allow-empty-input \"**/*.{css,scss}\"",
"lint:ts": "tsc --noEmit",
"lint:clippy": "cargo clippy --manifest-path ./backend/Cargo.toml --all-targets --all-features",
"lint:rustfmt": "cargo fmt --manifest-path ./backend/Cargo.toml --all -- --check",
"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 .",
"check": "tsx scripts/check.ts",
"updater": "tsx scripts/updater.ts",
"updater:nightly": "tsx scripts/updater-nightly.ts",
"send-notify": "tsx scripts/telegram-notify.ts",
"publish": "tsx scripts/publish.ts",
"portable": "tsx scripts/portable.ts",
"upload:osx-aarch64": "tsx scripts/osx-aarch64-upload.ts",
"generate:manifest": "run-p generate:manifest:*",
"generate:manifest:latest-version": "tsx scripts/generate-latest-version.ts",
"prepare": "husky",
"prepare:nightly": "tsx scripts/prepare-nightly.ts",
"prepare:release": "tsx scripts/prepare-release.ts"
},
"prettier": {
"plugins": [
"prettier-plugin-toml"
],
"endOfLine": "lf",
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"overrides": [
{
"files": [
"tsconfig.json",
"jsconfig.json"
],
"options": {
"parser": "jsonc"
}
}
]
},
"pnpm": {
"overrides": {
"vite-plugin-monaco-editor": "npm:vite-plugin-monaco-editor-new@1.1.3"
}
},
"dependencies": {
"@dnd-kit/core": "6.1.0",
"@dnd-kit/sortable": "8.0.0",
"@dnd-kit/utilities": "3.2.2",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.0",
"@juggle/resize-observer": "3.4.0",
"@mui/icons-material": "5.15.14",
"@mui/lab": "5.0.0-alpha.169",
"@mui/material": "5.15.14",
"@mui/x-data-grid": "7.0.0",
"@tauri-apps/api": "1.5.3",
"ahooks": "3.7.10",
"axios": "1.6.8",
"dayjs": "1.11.10",
"framer-motion": "11.0.20",
"i18next": "23.10.1",
"lodash-es": "4.17.21",
"monaco-editor": "0.47.0",
"mui-color-input": "2.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "4.0.13",
"react-hook-form": "7.51.1",
"react-i18next": "14.1.0",
"react-markdown": "9.0.1",
"react-router-dom": "6.22.3",
"react-transition-group": "4.4.5",
"react-virtuoso": "4.7.4",
"recoil": "0.7.7",
"swr": "2.2.5"
},
"devDependencies": {
"@actions/github": "6.0.0",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@tauri-apps/cli": "1.5.11",
"@types/fs-extra": "11.0.4",
"@types/js-cookie": "3.0.6",
"@types/lodash-es": "4.17.12",
"@types/node": "20.11.30",
"@types/react": "18.2.69",
"@types/react-dom": "18.2.22",
"@types/react-transition-group": "4.4.10",
"@typescript-eslint/eslint-plugin": "7.3.1",
"@typescript-eslint/parser": "7.3.1",
"@vitejs/plugin-react": "4.2.1",
"adm-zip": "0.5.12",
"autoprefixer": "10.4.19",
"colorize-template": "1.0.0",
"consola": "3.2.3",
"conventional-changelog-conventionalcommits": "7.0.2",
"cross-env": "7.0.3",
"dedent": "1.5.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-html": "8.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.34.1",
"fs-extra": "11.2.0",
"https-proxy-agent": "7.0.4",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"node-fetch": "3.3.2",
"npm-run-all2": "6.1.2",
"picocolors": "1.0.0",
"postcss": "8.4.38",
"postcss-html": "1.6.0",
"postcss-import": "16.1.0",
"postcss-scss": "4.0.9",
"prettier": "3.2.5",
"prettier-plugin-toml": "2.0.1",
"sass": "1.72.0",
"shikiji": "0.10.2",
"stylelint": "16.2.1",
"stylelint-config-html": "1.1.0",
"stylelint-config-recess-order": "5.0.0",
"stylelint-config-standard": "36.0.0",
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.2.1",
"telegraf": "4.16.3",
"tsx": "4.7.1",
"typescript": "5.4.3",
"vite": "5.2.4",
"vite-plugin-monaco-editor": "1.1.0",
"vite-plugin-svgr": "4.2.0"
}
}