-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
89 lines (89 loc) · 2.55 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
{
"name": "@repeek/browser-extension",
"private": true,
"engines": {
"node": ">=20.11.0",
"npm": ">=10.2.4"
},
"scripts": {
"prepare": "husky install",
"precommit": "lint-staged",
"dev": "tsx scripts/build.ts --dev",
"dev:firefox": "tsx scripts/build.ts --dev --firefox",
"test": "NODE_OPTIONS=\"--import=tsx --no-warnings\" ava",
"lint": "biome check .",
"types": "tsc",
"build": "tsx scripts/build.ts",
"build:firefox": "tsx scripts/build.ts --firefox",
"bump-version": "node scripts/bump-version.js",
"git-release": "node scripts/git-release.js",
"release:amo": "web-ext-submit --source-dir dist",
"release:cws": "chrome-webstore-upload upload --source=dist --auto-publish",
"release": "run-p release:*"
},
"dependencies": {
"@material-ui/core": "^3.9.1",
"array-shuffle": "^3.0.0",
"camelcase-keys": "^4.2.0",
"copy-text-to-clipboard": "^1.0.4",
"country-list": "^2.1.0",
"date-fns": "^2.4.1",
"detect-browser": "^5.3.0",
"dom-chef": "^5.1.0",
"js-cookie": "^3.0.5",
"ky": "^1.2.3",
"lucide-react": "^0.314.0",
"mem": "^4.0.0",
"p-memoize": "^1.0.0",
"p-retry": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-sortable-hoc": "^0.6.8",
"select-dom": "^7.1.1",
"tailwind-merge": "^2.2.1",
"webext-options-sync": "^4.2.1",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.2",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/sinon-chrome": "^2.2.15",
"@types/webextension-polyfill": "^0.10.7",
"autoprefixer": "^10.4.16",
"ava": "^6.0.1",
"chokidar": "^3.5.3",
"chrome-webstore-upload-cli": "^2.0.1",
"dot-json": "^1.3.0",
"esbuild": "^0.19.11",
"esbuild-plugin-inline-import": "^1.0.2",
"esbuild-style-plugin": "^1.6.3",
"execa": "^1.0.0",
"husky": "^8.0.3",
"linkedom": "^0.16.8",
"lint-staged": "^15.2.0",
"load-json-file": "^6.0.0",
"npm-run-all": "^4.1.2",
"postcss": "^8.4.33",
"semver": "^6.0.0",
"sinon": "^17.0.1",
"sinon-chrome": "^3.0.1",
"tailwindcss": "^3.4.1",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"web-ext": "^4.2.0",
"web-ext-submit": "^4.2.0",
"write-json-file": "^3.2.0"
},
"lint-staged": {
"*.{ts,tsx,js,json}": "biome check --apply --no-errors-on-unmatched"
},
"ava": {
"require": [
"./ava.setup.ts"
]
}
}