-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.56 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
{
"name": "twitter-open-original-image",
"description": "opens images in original size at twitter",
"repository": "[email protected]:hogashi/twitterOpenOriginalImage.git",
"author": "hogashi <[email protected]>",
"license": "MIT",
"scripts": {
"build:webpack": "webpack --version && webpack --mode production",
"build:tailwindcss": "tailwindcss -i ./src/input.css -o ./dist/css/popup.css",
"build": "run-p build:webpack build:tailwindcss",
"watch:webpack": "webpack --version && webpack --mode production --watch",
"watch:tailwindcss": "tailwindcss -i ./src/input.css -o ./dist/css/popup.css --watch",
"watch": "run-p watch:webpack watch:tailwindcss",
"lint": "biome check --apply-unsafe src __tests__",
"format": "biome format --write src __tests__",
"rome:fix": "run-s lint format",
"jest": "jest --version && jest --verbose --testEnvironment=jsdom --coverage",
"coverage": "make-coverage-badge",
"test": "run-s lint test:ts jest coverage",
"test:lint-format": "rome check src __tests__ && rome format src __tests__",
"test:ts": "tsc --noEmit",
"compress": "zip -r dist.zip dist",
"compress:edge": "run-s edit-manifest-edge compress restore-manifest-edge",
"edit-manifest-edge": "sed -i.bak 's/\\(options_page.*\\)$/\\1, \"update_URL\": \"https:\\/\\/edge.microsoft.com\\/extensionwebstorebase\\/v1\\/crx\"/' dist/manifest.json",
"restore-manifest-edge": "mv -f dist/manifest.json{.bak,}"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@babel/preset-typescript": "7.26.0",
"@tsconfig/recommended": "1.0.8",
"@types/chrome": "0.0.206",
"@types/filesystem": "0.0.32",
"@types/jest": "29.5.0",
"@types/react": "18.3.0",
"@types/react-dom": "18.3.0",
"@types/react-test-renderer": "18.3.0",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"babel-loader": "9.2.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.8",
"jest": "29.7.0",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^29.3.1",
"make-coverage-badge": "1.2.0",
"npm-run-all2": "7.0.1",
"react-test-renderer": "17.0.2",
"tailwindcss": "3.4.16",
"typescript": "5.7.2",
"webpack": "5.97.0",
"webpack-cli": "5.1.4"
},
"dependencies": {
"@babel/runtime": "7.26.0",
"@biomejs/biome": "1.9.4",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"pnpm": {
"overrides": {
"cheerio": "1.0.0-rc.12"
}
}
}