forked from Feverqwe/Transmission
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.35 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
90
91
92
93
{
"name": "transmission-easy-client",
"version": "3.5.0",
"engines": {
"node": "^22.22.2 || ^24.15.0 || >=26.0.0"
},
"sideEffects": [
"*.css",
"*.scss",
"*.sass"
],
"scripts": {
"watch": "cross-env BROWSER=chrome webpack --mode development --watch",
"watch:firefox": "cross-env BROWSER=firefox webpack --mode development --watch",
"build": "cross-env BROWSER=chrome webpack --mode production",
"build:firefox": "cross-env BROWSER=firefox webpack --mode production",
"build:opera": "cross-env BROWSER=opera webpack --mode production",
"type-check": "tsc --noEmit",
"check:locales": "node ./builder/checkLocales",
"check:versions": "node ./builder/checkVersions",
"smoke": "node ./builder/smokeTest",
"lint": "eslint src/ builder/",
"lint:fix": "eslint src/ builder/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"_compress": "node ./builder/compressDist",
"_compressSource": "node ./builder/compressSource",
"_releaseCh": "npm run type-check && npm run build && npm run _compress -- --BROWSER chrome",
"_releaseFf": "npm run type-check && npm run build:firefox && npm run _compress -- --BROWSER firefox && npm run _compressSource -- --BROWSER firefox",
"_releaseOp": "npm run type-check && npm run build:opera && npm run _compress -- --BROWSER opera && npm run _compressSource -- --BROWSER opera",
"release": "npm run _releaseCh && npm run _releaseFf && npm run _releaseOp",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-context-menu": "^2.3.7",
"escape-string-regexp": "^5.0.0",
"filesize": "^11.0.23",
"mobx": "^7.0.3",
"mobx-react": "^10.0.2",
"mobx-state-tree": "^8.0.0",
"promise-limit": "^2.7.0",
"rc-select": "^14.16.8",
"react": "^19.2.8",
"react-colorful": "^5.8.1",
"react-dom": "^19.2.8",
"react-router-dom": "^7.18.3",
"react-tiny-popover": "^8.1.6",
"serialize-error": "^13.0.1"
},
"devDependencies": {
"@babel/core": "^8.0.1",
"@babel/preset-env": "^8.0.2",
"@babel/preset-react": "^8.0.1",
"@babel/preset-typescript": "^8.0.1",
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@types/chrome": "^0.2.8",
"@types/node": "^26.4.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"@typescript-eslint/eslint-plugin": "^8.69.0",
"@typescript-eslint/parser": "^8.69.0",
"@vitest/coverage-v8": "^5.0.0",
"archiver": "^8.0.0",
"babel-loader": "^10.1.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"cross-env": "^10.1.0",
"css-loader": "^7.1.5",
"css-minimizer-webpack-plugin": "^8.0.0",
"eslint": "^10.9.1",
"eslint-plugin-react-hooks": "^7.1.1",
"html-webpack-plugin": "^5.6.8",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.4.1",
"mini-css-extract-plugin": "^2.10.2",
"prettier": "^3.9.6",
"process": "^0.11.10",
"sass": "^1.103.1",
"sass-loader": "^17.0.1",
"terser-webpack-plugin": "^5.6.1",
"typescript": "^6.0.3",
"url": "^0.11.4",
"vitest": "^5.0.0",
"webpack": "^5.110.3",
"webpack-cli": "^7.2.3"
}
}