-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1.85 KB
/
package.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.85 KB
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
{
"author": "seven communications GmbH & Co. KG <support@seven.io> (https://www.seven.io)",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webextension-polyfill": "^0.10.0"
},
"description": "Extension for sending SMS & making Text-To-Speech calls via seven.io",
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@samrum/vite-plugin-web-extension": "^5.0.0",
"@types/chrome": "^0.0.251",
"@types/lodash": "^4.14.201",
"@types/node": "^18.18.9",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/webextension-polyfill": "^0.10.6",
"@vitejs/plugin-react": "^4.1.1",
"cross-env": "^7.0.3",
"lodash": "^4.17.21",
"react-refresh": "^0.14.0",
"ts-node": "^10.9.1",
"type-fest": "^4.7.1",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-tsconfig-paths": "^4.2.1",
"web-ext": "^7.8.0"
},
"homepage": "https://github.com/seven-io/browser",
"license": "MIT",
"name": "@seven.io/browser",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/seven-io/browser"
},
"scripts": {
"build": "cross-env BROWSER_TYPE=chrome vite build && cross-env BROWSER_TYPE=firefox vite build",
"watch": "vite build --watch --mode development --minify false",
"dev": "vite",
"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://example.com\" --source-dir ./dist/"
},
"version": "4.0.0"
}