-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
105 lines (105 loc) · 3.12 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
96
97
98
99
100
101
102
103
104
105
{
"name": "mailflare-extension",
"displayName": "MailFlare - Email Alias Extension",
"version": "1.5.3",
"description": "Create email aliases for your own domains using Cloudflare Email Routing.",
"author": "Curetix <[email protected]>",
"type": "module",
"keywords": [
"browser-extension",
"webext",
"browser-addons",
"browser-plugins",
"chrome",
"firefox",
"email"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/curetix/mailflare-extension.git"
},
"scripts": {
"prepare": "husky install && plasmo build",
"dev": "plasmo dev --target=chrome-mv3",
"dev:firefox": "plasmo dev --target=firefox-mv3",
"dev:web": "run-p dev:vite dev:functions",
"dev:vite": "vite --port 4000",
"dev:functions": "wrangler pages dev --port 4001 dist/",
"build": "tsc && plasmo build --hoist --zip",
"build:all": "tsc && run-s build:chrome build:firefox",
"build:chrome": "plasmo build --zip --hoist --target=chrome-mv3",
"build:firefox": "plasmo build --zip --hoist --target=firefox-mv3",
"build:web": "run-s build:vite",
"build:vite": "tsc && vite build",
"typesafe-i18n": "typesafe-i18n",
"lint": "biome lint functions/ src/",
"format": "biome format --write functions/ src/"
},
"dependencies": {
"@emotion/react": "11.13.5",
"@mantine/core": "7.14.2",
"@mantine/form": "7.14.2",
"@mantine/hooks": "7.14.2",
"@mantine/notifications": "7.14.2",
"@plasmohq/messaging": "0.6.2",
"@plasmohq/storage": "1.13.0",
"@tabler/icons-react": "3.22.0",
"@tanstack/query-core": "5.60.6",
"@tanstack/react-query": "5.61.3",
"@tanstack/react-query-devtools": "5.61.3",
"@tanstack/react-query-persist-client": "5.61.3",
"autoprefixer": "10.4.20",
"daisyui": "4.12.14",
"jotai": "2.10.3",
"jotai-tanstack-query": "0.9.0",
"plasmo": "0.89.4",
"postcss": "8.4.49",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "7.0.1",
"psl": "1.13.0",
"random-words": "2.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.15",
"typesafe-i18n": "5.26.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cloudflare/workers-types": "4.20241112.0",
"@plasmohq/rps": "1.8.7",
"@types/chrome": "0.0.287",
"@types/node": "22.10.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react-swc": "3.7.2",
"husky": "8.0.3",
"lint-staged": "15.2.10",
"typescript": "5.7.2",
"vite": "6.0.0",
"vite-plugin-pwa": "0.21.0",
"vite-tsconfig-paths": "5.1.3",
"wrangler": "3.90.0"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"svgo": "2.8.0"
}
}
},
"manifest": {
"permissions": ["activeTab", "contextMenus"],
"host_permissions": ["*://api.cloudflare.com/*"],
"browser_specific_settings": {
"gecko": {
"id": "{f0bdc9fa-a062-4424-baee-16530c53aa06}"
}
}
},
"lint-staged": {
"**/*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --apply --no-errors-on-unmatched"
]
}
}