-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 2.29 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
62
63
{
"name": "prompster",
"version": "1.4.5",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack --mode production --env browser=chrome --watch",
"start:firefox": "webpack --mode production --env browser=firefox --watch",
"build": "webpack --mode production --env browser=chrome",
"build:chrome": "webpack --mode production --env browser=chrome",
"build:firefox": "webpack --mode production --env browser=firefox",
"build:safari": "webpack --mode production --env browser=safari",
"build:demo": "webpack --mode production --env browser=demo",
"build:all": "run-s build:chrome build:firefox build:safari build:demo",
"init:safari": "xcrun safari-web-extension-converter --project-location dist-safari/ --bundle-identifier com.app.prompster dist-safari/",
"publish:chrome": "webpack --mode production --env browser=chrome && node scripts/publish.mjs",
"pretty": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tailwindcss/line-clamp": "^0.4.4",
"@types/chrome": "^0.0.226",
"@types/dom-inputevent": "^1.0.7",
"@types/react": "^18.0.30",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.5",
"@types/webextension-polyfill": "^0.10.0",
"archiver": "^5.3.1",
"autoprefixer": "^10.4.14",
"chrome-webstore-upload": "^1.0.0",
"google-auth-library": "^8.7.0",
"postcss": "^8.4.21",
"postcss-loader": "^7.1.0",
"postcss-parent-selector": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-focus-lock": "^2.9.4",
"react-icons": "^4.8.0",
"react-router-dom": "^6.10.0",
"react-transition-group": "^4.4.5",
"tailwindcss": "^3.3.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.76.3",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.13.1"
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"style-loader": "^3.3.2",
"webpack-merge": "^5.8.0",
"zip-webpack-plugin": "^4.0.1"
}
}