-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.77 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.77 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "link-builder",
"description": "Build a link and copy to the clipboard in various formats.",
"private": true,
"version": "0.2.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "pnpm run build:firefox",
"build:firefox": "tsc && cross-env TARGET_BROWSER=firefox vite build",
"build:chrome": "tsc && cross-env TARGET_BROWSER=chrome vite build",
"watch": "pnpm run watch:firefox",
"watch:firefox": "cross-env TARGET_BROWSER=firefox vite build --watch",
"watch:chrome": "cross-env TARGET_BROWSER=chrome vite build --watch",
"preview": "vite preview",
"lint": "eslint --fix ./src",
"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://google.com\" --source-dir ./dist/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"package:firefox": "web-ext build --source-dir ./dist/firefox --artifacts-dir ./web-ext-artifacts/chrome --overwrite-dest",
"package:chrome": "web-ext build --source-dir ./dist/chrome --artifacts-dir ./web-ext-artifacts/chrome --overwrite-dest",
"test": "vitest run",
"format": "prettier --write ./src"
},
"dependencies": {
"@floating-ui/react": "^0.19.2",
"clsx": "^1.2.1",
"mustache": "^4.2.0",
"nanoid": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-modal": "^3.16.1",
"rehype": "^12.0.1",
"rehype-sanitize": "^5.0.1",
"rehype-stringify": "^9.0.3",
"remark": "^14.0.2",
"remark-rehype": "^10.1.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@chromatic-com/storybook": "^1",
"@storybook/addon-actions": "^8.1.10",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/addon-interactions": "^8.1.10",
"@storybook/addon-links": "^8.1.10",
"@storybook/react": "^8.1.10",
"@storybook/react-vite": "^8.1.10",
"@storybook/test": "^8.1.10",
"@types/mustache": "^4.2.2",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-modal": "^3.13.1",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "latest",
"babel-loader": "^8.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-tailwindcss": "^3.12.1",
"postcss": "latest",
"prettier": "^2.8.3",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.3.0",
"storybook": "^8.1.10",
"tailwindcss": "latest",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vite": "^5.3.1",
"vite-plugin-svgr": "^4.2.0",
"vite-plugin-web-extension": "^3.0.2",
"vitest": "^0.32.0",
"web-ext": "^7.5.0"
},
"pnpm": {
"overrides": {
"webpack@>=5.0.0 <5.76.0": ">=5.76.0",
"postcss@<8.4.31": ">=8.4.31",
"get-func-name@<2.0.1": ">=2.0.1",
"vite@>=4.0.0 <=4.5.1": ">=4.5.2",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"xml2js@<0.5.0": ">=0.5.0",
"express@<4.19.2": ">=4.19.2",
"jose@>=3.0.0 <=4.15.4": ">=4.15.5",
"@babel/traverse@<7.23.2": ">=7.23.2",
"vite@>=4.0.0 <=4.5.2": ">=4.5.3",
"braces@<3.0.3": ">=3.0.3",
"ws@>=8.0.0 <8.17.1": ">=8.17.1",
"word-wrap@<1.2.4": ">=1.2.4",
"tough-cookie@<4.1.3": ">=4.1.3"
}
}
}