-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.77 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
{
"name": "focaai-chrome-extension",
"private": true,
"version": "0.0.0",
"author": {
"name": "Henrique de Paula Rodrigues",
"email": "[email protected]"
},
"description": "Foca.ai Chrome Extension, your best friend for productivity",
"displayName": "Foca.ai",
"type": "module",
"scripts": {
"build": "vite build",
"watch": "vite build --watch --mode development --minify false",
"dev": "vite",
"lint": "prettier --check '**/*.{ts,tsx}' --ignore-pattern .gitignore && npx eslint '**/*.{ts,tsx}' --ignore-pattern .gitignore",
"format": "prettier --write '**/*.{ts,tsx}' --ignore-pattern .gitignore && npx eslint '**/*.{ts,tsx}' --fix --ignore-pattern .gitignore",
"serve:firefox": "web-ext run --start-url \"about:debugging#/runtime/this-firefox\" --source-dir ./dist/",
"serve:chrome": "web-ext run -t chromium --start-url \"https://google.com\" --source-dir ./dist/"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"webextension-polyfill": "~0.12.0"
},
"devDependencies": {
"@samrum/vite-plugin-web-extension": "^5.1.1",
"@types/chrome": "^0.0.287",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/webextension-polyfill": "^0.12.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "~10.4.20",
"eslint": "^9.16.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"postcss": "~8.4.49",
"postcss-import": "~16.1.0",
"prettier": "^3.4.1",
"prettier-plugin-tailwindcss": "~0.6.9",
"tailwindcss": "~3.4.15",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"user-agent-data-types": "~0.4.2",
"vite": "~6.0.1",
"web-ext": "^8.3.0"
},
"packageManager": "[email protected]"
}