-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 977 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 977 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
29
30
31
32
33
34
35
{
"private": true,
"name": "apply-kazi",
"description": "TypeScript-based extension with a sidebar panel. Adds a sidebar with a simple page.",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"author": {
"name": "Tech Tafari",
"email": "techtafari@outlook.com",
"url": "https://techtafari.vercel.app"
},
"devDependencies": {
"@types/chrome": "^0.1.42",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"extension": "^3.18.1",
"typescript": "5.3.3"
},
"scripts": {
"dev": "extension dev",
"start": "extension start",
"build": "extension build",
"preview": "extension preview",
"build:chrome": "extension build --browser chrome",
"build:firefox": "extension build --browser firefox",
"build:edge": "extension build --browser edge"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"packageManager": "npm@11.10.0"
}