forked from libnyanpasu/clash-nyanpasu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.66 KB
/
package.json
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "clash-nyanpasu",
"version": "1.4.2",
"license": "GPL-3.0",
"scripts": {
"dev": "tauri dev -f default-meta -c ./backend/tauri/tauri.conf.json",
"dev:diff": "tauri dev -f verge-dev -c ./backend/tauri/tauri.conf.json",
"build": "tauri build -f default-meta -c ./backend/tauri/tauri.conf.json",
"build:nightly": "tauri build -f default-meta nightly -c ./backend/tauri/tauri.nightly.conf.json",
"tauri": "tauri",
"web:dev": "vite",
"web:build": "tsc --noEmit && 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",
"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 install",
"prepare:nightly": "tsx scripts/prepare-nightly.ts"
},
"prettier": {
"plugins": [
"prettier-plugin-toml"
],
"endOfLine": "lf",
"semi": true,
"singleQuote": false,
"tabWidth": 2
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@juggle/resize-observer": "^3.4.0",
"@mui/icons-material": "^5.14.14",
"@mui/lab": "5.0.0-alpha.155",
"@mui/material": "^5.14.14",
"@mui/x-data-grid": "^6.16.3",
"@tauri-apps/api": "^1.5.1",
"ahooks": "^3.7.2",
"axios": "^1.1.3",
"dayjs": "1.11.10",
"framer-motion": "10.16.16",
"i18next": "^23.0.0",
"lodash-es": "^4.17.21",
"monaco-editor": "^0.45.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.0",
"react-hook-form": "^7.39.5",
"react-i18next": "^14.0.0",
"react-router-dom": "^6.4.3",
"react-transition-group": "^4.4.5",
"react-virtuoso": "^4.0.0",
"recoil": "^0.7.6",
"snarkdown": "^2.0.0",
"swr": "^2.0.0"
},
"devDependencies": {
"@actions/github": "^6.0.0",
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@tauri-apps/cli": "^1.5.7",
"@types/fs-extra": "^11.0.0",
"@types/js-cookie": "^3.0.2",
"@types/lodash": "^4.14.180",
"@types/lodash-es": "^4.17.7",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.0.11",
"@types/react-transition-group": "^4.4.9",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"@vitejs/plugin-react": "^4.2.1",
"adm-zip": "^0.5.9",
"autoprefixer": "10.4.16",
"colorize-template": "1.0.0",
"consola": "3.2.3",
"cross-env": "^7.0.3",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-html": "7.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "16.5.0",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"fs-extra": "^11.0.0",
"https-proxy-agent": "^7.0.0",
"husky": "^8.0.0",
"lint-staged": "15.2.0",
"node-fetch": "^3.2.6",
"npm-run-all": "4.1.5",
"picocolors": "1.0.0",
"postcss": "8.4.32",
"postcss-html": "1.5.0",
"postcss-import": "15.1.0",
"postcss-scss": "4.0.9",
"prettier": "^3.1.0",
"prettier-plugin-toml": "2.0.1",
"pretty-quick": "^3.1.3",
"sass": "^1.54.0",
"shikiji": "0.9.11",
"stylelint": "16.0.2",
"stylelint-config-html": "1.1.0",
"stylelint-config-recess-order": "4.4.0",
"stylelint-config-standard": "35.0.0",
"stylelint-declaration-block-no-ignored-properties": "2.7.0",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.0.0",
"tsx": "4.7.0",
"typescript": "^5.3.2",
"vite": "^5.0.0",
"vite-plugin-monaco-editor": "^1.1.0",
"vite-plugin-svgr": "^4.2.0"
}
}