-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 948 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 948 Bytes
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
{
"name": "currency-converter-extension",
"version": "1.0.0",
"description": "A Chrome extension that automatically detects and converts prices on any webpage to your preferred currencies using real-time exchange rates.",
"private": true,
"keywords": ["chrome-extension", "currency-converter", "exchange-rates", "react", "typescript"],
"author": "bytebrain3",
"license": "MIT",
"type": "module",
"scripts": {
"build:scripts": "vite build --config vite.config.scripts.ts",
"build:pages": "vite build --config vite.config.pages.ts",
"build": "tsc && npm run build:scripts && npm run build:pages",
"dev": "npm run build"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"typescript": "^5.5.3",
"vite": "^5.4.0"
}
}