-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.04 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
{
"name": "sgreen",
"version": "0.1.0",
"displayName": "Sgreen",
"author": "https://github.com/maltoze",
"description": "A screen recorder chrome extension",
"scripts": {
"build": "vite build",
"watch": "vite build --watch --mode development --minify false",
"dev": "vite",
"serve:firefox": "web-ext run --start-url \"about:debugging#/runtime/this-firefox\" --source-dir ./dist/",
"serve:chrome": "web-ext run -t chromium --start-url \"https://example.com\" --source-dir ./dist/",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --cache",
"storybook": "DISABLE_WEBEXTENSION=1 storybook dev -p 6006",
"build-storybook": "DISABLE_WEBEXTENSION=1 storybook build",
"prepare": "husky install"
},
"license": "AGPL-3.0",
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@samrum/vite-plugin-web-extension": "^5.0.0",
"@storybook/addon-actions": "^7.3.2",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.3.2",
"@storybook/manager-api": "^7.3.2",
"@storybook/react": "^7.3.2",
"@storybook/react-vite": "^7.3.2",
"@storybook/testing-library": "^0.2.0",
"@thedutchcoder/postcss-rem-to-px": "^0.0.2",
"@types/chrome": "^0.0.243",
"@types/node": "^20.5.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/serviceworker": "^0.0.72",
"@types/uuid": "^9.0.2",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.3",
"postcss": "^8.4.27",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.4.1",
"storybook": "^7.3.2",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6",
"vite": "~4.3.9",
"web-ext": "^7.6.2"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.6",
"@sentry/browser": "^7.65.0",
"@sentry/react": "^7.65.0",
"@sentry/vite-plugin": "^2.7.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"fix-webm-duration": "^1.0.5",
"framer-motion": "^10.15.1",
"lucide-react": "^0.263.1",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.6",
"webextension-polyfill": "^0.10.0",
"zustand": "^4.4.1"
}
}