This repository has been archived by the owner on Jun 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
47 lines (47 loc) · 1.72 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
{
"name": "bing-chat-for-all-browsers",
"version": "1.0.7",
"description": "bing-chat-for-all-browsers",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "$npm_execpath run clean && $npm_execpath run chrome && $npm_execpath run firefox",
"chrome": "webpack --config webpack/webpack.chrome.js",
"firefox": "webpack --config webpack/webpack.firefox.js",
"safari": "xcrun safari-web-extension-converter release/firefox --swift --no-open --copy-resources --project-location safari --force --bundle-identifier sh.cho.bing-chat-for-all-browsers",
"clean": "rimraf release",
"test": "npx jest",
"style": "prettier --write \"**/*.{ts,tsx,json,js,jsx,css,scss,html,md}\"",
"zip": "cd release && rm -f chrome.zip && rm -f firefox.zip && cd chrome && zip -r ../chrome.zip -m .DS_Store * && cd ../firefox && zip -r ../firefox.zip -m .DS_Store * && cd .. && rm -rf chrome && rm -rf firefox"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anaclumos/bing-chat-for-all-browsers.git"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"webextension-polyfill-ts": "^0.26.0"
},
"devDependencies": {
"@types/chrome": "0.0.158",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"copy-webpack-plugin": "^9.0.1",
"file-loader": "^6.2.0",
"glob": "^7.1.6",
"jest": "^27.2.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"ts-jest": "^27.0.5",
"ts-loader": "^8.0.0",
"typescript": "^4.4.3 ",
"url-loader": "^4.1.1",
"webpack": "^5.61.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0"
}
}