This repository was archived by the owner on Nov 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.93 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.93 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "wtf",
"version": "3.7.3",
"description": "WTF Chrome Extension that allows you to send messages in bulk via WhatsApp™ Web",
"main": "index.js",
"scripts": {
"watch": "webpack --mode development --watch --progress",
"dev": "tsc && webpack --mode development",
"build": "tsc && webpack",
"lint": "eslint .",
"lint:fix": "eslint . --fix && yarn format",
"format": "prettier --write .",
"clean": "rimraf dist",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"author": "Marcos V.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/marcosvrs/wtf.git"
},
"dependencies": {
"@wppconnect/wa-js": "^3.15.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@tsconfig/recommended": "^1.0.8",
"@types/chrome": "^0.0.287",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"cssnano": "^7.0.6",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss": "8.4.49",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.2",
"qrcode-terminal": "^0.12.0",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.16",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=18",
"npm": "please-use-yarn",
"yarn": "^4.3.1"
},
"packageManager": "yarn@4.5.3"
}