forked from irazasyed/email-masker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.77 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "email-masker",
"private": true,
"displayName": "__MSG_extensionName__",
"version": "0.2.1",
"description": "__MSG_extensionDescription__",
"author": "[email protected]",
"homepage": "https://github.com/irazasyed/email-masker",
"scripts": {
"dev": "plasmo dev",
"dev:firefox": "plasmo dev --target=firefox-mv2",
"start": "web-ext run --source-dir ./build/chrome-mv3-dev --target chromium",
"start:firefox": "web-ext run --source-dir ./build/firefox-mv2-dev",
"build": "run-s build:*",
"build:chrome": "plasmo build --hoist",
"build:firefox": "plasmo build --hoist --target=firefox-mv2",
"package": "run-s package:*",
"package:chrome": "plasmo build --hoist --zip",
"package:firefox": "plasmo build --hoist --zip --target=firefox-mv2",
"lint:js": "xo",
"lint:fix": "xo --fix",
"format": "prettier --write \"**/*.{ts,tsx,md,mjs}\"",
"dev-dashboard": "open \"https://chrome.google.com/webstore/developer/dashboard\""
},
"dependencies": {
"@plasmohq/storage": "^1.9.0",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"lucide-react": "^0.292.0",
"plasmo": "^0.84.0",
"pnpm": "^8.12.0",
"random-words": "^2.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.3.5",
"tailwindcss-animate": "^1.0.7",
"tldts": "^6.0.21"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@plasmohq/rps": "^1.8.7",
"@types/chrome": "^0.0.253",
"@types/node": "^20.10.0",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"@types/webextension-polyfill": "^0.10.7",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"web-ext": "^7.8.0",
"webextension-polyfill": "^0.10.0",
"xo": "^0.56.0"
},
"manifest": {
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"permissions": [
"activeTab",
"storage"
]
},
"xo": {
"prettier": true,
"ignores": [
"src/components/ui/**/*.{ts,tsx}"
],
"envs": [
"browser"
],
"globals": [
"browser"
],
"rules": {
"unicorn/prefer-module": 0,
"unicorn/no-array-for-each": 0,
"@typescript-eslint/naming-convention": 0,
"@typescript-eslint/ban-types": 0,
"import/extensions": 0,
"import/no-named-as-default": 0
}
}
}