generated from chibat/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 2.23 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ntfy-browser",
"version": "1.0.0",
"description": "A ntfy-browser extension to receive notifications without having the page open",
"main": "index.js",
"scripts": {
"start": "npm run start:chrome",
"start:chrome": "TARGET_BROWSER=chrome webpack --config webpack/webpack.dev.js --watch",
"start:firefox": "TARGET_BROWSER=firefox webpack --config webpack/webpack.dev.js --watch",
"build": "npm run build:chrome && npm run build:firefox",
"build:chrome": "cross-env TARGET_BROWSER=chrome webpack --config webpack/webpack.prod.js && web-ext build --source-dir ./dist/chrome --artifacts-dir dist --filename ntfy-browser-chrome.zip",
"build:firefox": "cross-env TARGET_BROWSER=firefox webpack --config webpack/webpack.prod.js && web-ext build --source-dir ./dist/firefox --artifacts-dir dist --filename ntfy-browser-firefox.zip",
"clean": "rimraf dist",
"test": "jest",
"style": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"author": "Johan van Eck",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/johman10/ntfy-browser.git"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.15",
"@mui/lab": "^5.0.0-alpha.124",
"@mui/material": "^5.15.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.3"
},
"devDependencies": {
"@types/chrome": "^0.0.267",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/webextension-polyfill": "^0.10.4",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.50.0",
"eslint-plugin-react": "^7.34.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-loader": "^9.4.4",
"typescript": "^5.4.5",
"web-ext": "^7.11.0",
"webextension-polyfill": "^0.11.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0",
"wext-manifest-loader": "^3.0.0",
"wext-manifest-webpack-plugin": "^1.4.1"
}
}