-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.87 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.87 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
{
"name": "globalspeed",
"version": "1.0.0",
"browserslist": [
"chrome >= 116",
"firefox >= 125"
],
"sideEffects": [
"./src/background/utils/*.ts",
"./src/background/badge.ts",
"./src/background/rules.ts",
"./src/background/capture.ts",
"notFirefox/background/capture"
],
"scripts": {
"common": " rm -rf build && webpack --config webpack.config.js && cp -r static/. staticCh/. build/unpacked && node tools/processLocale.js --build && find build -name '.DS_Store' -type f -delete",
"commonFf": "rm -rf buildFf && FIREFOX=true webpack --config webpack.config.js && cp -r static/. staticFf/. buildFf/unpacked && node tools/replaceCtx.js && FIREFOX=true node tools/processLocale.js --build && find buildFf -name '.DS_Store' -type f -delete",
"dev": " export NODE_ENV=development && npm run common",
"devFf": " export NODE_ENV=development && npm run commonFf",
"prod": " export NODE_ENV=production && npm run common && cd build/unpacked && zip -r '../global-speed-chromium.zip' .",
"prodFf": "export NODE_ENV=production && npm run commonFf && cd buildFf/unpacked && zip -r '../global-speed-firefox.zip' .",
"prodFff": "npm run prodFf && rm -rf zed && mkdir -p zed/unpacked && cp -r src static staticCh staticFf tools .babelrc package-lock.json package.json postcss.config.js tsconfig.json webpack.config.js zed/unpacked && cp firefox-build.md zed/unpacked/README.md && (cd zed/unpacked && zip -r ../packed.zip .) && mv zed/packed.zip buildFf/source.zip && rm -rf zed",
"adhere": "node tools/processLocale.js && node tools/generateGsmType.js",
"release": "node tools/release.js",
"format": "prettier --check '**/*.{js,ts,tsx,json,css}'",
"format:fix": "prettier --write '**/*.{js,ts,tsx,json,css}'"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/runtime": "^7.28.4",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@types/audioworklet": "^0.0.92",
"@types/chrome": "^0.1.32",
"autoprefixer": "^10.4.23",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"openai": "^6.15.0",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"postcss-nested": "^7.0.2",
"style-loader": "^4.0.0",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"zod": "^4.2.1",
"prettier": "^3.8.1",
"@types/lodash": "^4.17.21",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3"
},
"dependencies": {
"clsx": "^2.1.1",
"fast-deep-equal": "^3.1.3",
"immer": "^11.1.0",
"lodash.debounce": "^4.0.8",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-error-boundary": "^6.1.0",
"react-icons": "^5.5.0",
"soundtouchjs": "^0.1.27"
}
}