-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpackage.json
49 lines (49 loc) · 1.61 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": "vite-web-extension",
"version": "1.4.0",
"description": "A simple chrome & firefox extension template with Vite, React, TypeScript and Tailwind CSS.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JohnBra/vite-web-extension.git"
},
"scripts": {
"build": "vite build --config vite.config.chrome.ts",
"build:chrome": "vite build --config vite.config.chrome.ts",
"build:firefox": "vite build --config vite.config.firefox.ts",
"dev": "nodemon --config nodemon.chrome.json",
"dev:chrome": "nodemon --config nodemon.chrome.json",
"dev:firefox": "nodemon --config nodemon.firefox.json"
},
"type": "module",
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.30",
"@tailwindcss/vite": "^4.0.0",
"@types/chrome": "^0.0.297",
"@types/node": "^22.10.5",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.2",
"@types/webextension-polyfill": "^0.12.1",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"fs-extra": "^11.2.0",
"nodemon": "^3.1.9",
"tailwindcss": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vite": "^6.0.11",
"vite-tsconfig-paths": "^5.1.4"
}
}