-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.67 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.67 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "twitch-better-profile",
"displayName": "Twitch Better Profile",
"version": "0.2.0",
"description": "A new way to first interact with users on Twitch.",
"author": "Daniel Reis. <danielhe4rt@gmail.com>",
"scripts": {
"dev": "plasmo dev",
"prebuild": "pnpm rimraf build .plasmo",
"build": "pnpm build:firefox && pnpm build:chrome",
"build:firefox": "plasmo build --zip --target=firefox-mv2",
"build:chrome": "plasmo build --zip --target=chrome-mv3",
"dev:firefox": "plasmo dev --target=firefox-mv2",
"dev:chrome": "plasmo dev --target=chrome-mv3",
"package": "plasmo package",
"check": "biome check",
"check:fix": "biome check --write",
"check:ci": "biome ci .",
"check:hook": "biome check --no-errors-on-unmatched --files-ignore-unknown=true"
},
"dependencies": {
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.13.0",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-select": "^2.1.5",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "1.1.2",
"@radix-ui/react-tabs": "^1.1.2",
"@tanstack/react-query": "5.65.1",
"@tanstack/react-query-devtools": "5.65.1",
"@types/firefox": "^0.0.34",
"@types/firefox-webext-browser": "^120.0.4",
"axios": "1.7.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"framer-motion": "11.18.2",
"lucide-react": "^0.474.0",
"plasmo": "0.89.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-loading-skeleton": "3.5.0",
"tailwind-merge": "^2.6.0",
"tailwindcss": "3.4.17",
"tailwindcss-animate": "^1.0.7",
"webextension-polyfill": "^0.12.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tanstack/eslint-plugin-query": "5.65.0",
"@types/chrome": "0.0.300",
"@types/node": "22.12.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/webextension-polyfill": "^0.12.1",
"lefthook": "1.10.10",
"postcss": "8.5.1",
"rimraf": "6.0.1",
"typescript": "5.7.3",
"webextension-polyfill": "^0.12.0"
},
"manifest": {
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "{29688c78-7d19-4122-8315-bbb81ad15cb4}",
"strict_min_version": "109.0"
}
},
"permissions": [
"activeTab",
"identity",
"*://*.twitch.tv/*",
"https://*.danielheart.dev/*",
"https://*.basementdevs.com.br/*",
"*://localhost/*",
"storage"
]
}
}