-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
95 lines (95 loc) · 2.95 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": "sky-follower-bridge",
"displayName": "Sky Follower Bridge",
"version": "2.6.0",
"description": "__MSG_extension_description__",
"author": "kawamataryou",
"scripts": {
"dev": "plasmo dev",
"dev:firefox": "plasmo dev --target=firefox-mv3",
"build": "plasmo build && npm run remove-permissions",
"build:firefox": "plasmo build --target=firefox-mv3 && npm run remove-permissions",
"package": "plasmo package",
"package:firefox": "plasmo package --target=firefox-mv3",
"run-client": "ts-node --project tsconfig.script.json scripts/client.ts",
"check": "npx @biomejs/biome check --write --unsafe ./src",
"check:ci": "npx @biomejs/biome ci ./src",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"remove-permissions": "node scripts/remove_web_accessible_resources.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@atproto/api": "^0.13.12",
"@changesets/cli": "^2.27.1",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.12.0",
"@tanstack/react-virtual": "^3.11.2",
"@vitejs/plugin-react": "^4.3.3",
"consola": "^3.4.0",
"destr": "^2.0.3",
"framer-motion": "^11.11.11",
"plasmo": "^0.84.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-toastify": "^10.0.6",
"ts-pattern": "^5.0.6",
"vanjs-core": "^1.2.8",
"vitepress": "^1.5.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@chromatic-com/storybook": "^3.2.2",
"@plasmohq/prettier-plugin-sort-imports": "4.0.1",
"@storybook/addon-essentials": "^8.4.5",
"@storybook/addon-interactions": "^8.4.5",
"@storybook/addon-links": "^8.4.5",
"@storybook/addon-onboarding": "^8.4.5",
"@storybook/blocks": "^8.4.5",
"@storybook/react": "^8.4.5",
"@storybook/react-vite": "^8.4.5",
"@storybook/test": "^8.4.5",
"@types/chrome": "0.0.260",
"@types/node": "20.11.16",
"@types/react": "18.2.51",
"@types/react-dom": "18.2.18",
"autoprefixer": "^10.4.17",
"daisyui": "^4.12.14",
"lefthook": "^1.8.4",
"postcss": "^8.4.33",
"postcss-nesting": "^13.0.1",
"prettier": "3.2.4",
"storybook": "^8.4.5",
"storybook-dark-mode": "^4.0.2",
"tailwindcss": "^3.4.1",
"typescript": "5.3.3"
},
"manifest": {
"name": "__MSG_extension_name__",
"default_locale": "en",
"host_permissions": [
"https://bsky.social/*",
"https://twitter.com/*",
"https://x.com/*",
"https://www.threads.net/*",
"https://www.instagram.com/*",
"https://www.tiktok.com/*"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+B",
"mac": "Alt+B"
}
}
},
"web_accessible_resources": []
}
}