-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.37 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
{
"name": "minimalist-focus-mode",
"version": "0.2",
"description": "A Chrome extension that hides distracting elements to help users stay focused.",
"main": "src/background.js",
"scripts": {
"watch": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"ai": "webpack --config webpack.ai.js",
"lint": "eslint src --max-warnings=0",
"lint:fix": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/cothema/minimalist-focus-mode.git"
},
"keywords": [
"focus",
"deep",
"work",
"chrome",
"extension"
],
"author": "Cothema s.r.o.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cothema/minimalist-focus-mode/issues"
},
"homepage": "https://github.com/cothema/minimalist-focus-mode#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@tailwindcss/postcss": "^4.0.6",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@types/chrome": "^0.0.304",
"@types/react": "^19.0.9",
"@types/react-dom": "^19.0.3",
"@types/web": "^0.0.203",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.5.2",
"postcss-loader": "^8.1.1",
"prettier": "3.5.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"sass": "^1.85.0",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"tailwindcss": "^4.0.6",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1",
"zip-webpack-plugin": "^4.0.3"
}
}