-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
71 lines (71 loc) · 2.23 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
{
"name": "clipboard-history",
"displayName": "Clipboard History IO: Secure, fast, and elegant clipboard manager",
"version": "1.3.6",
"description": "The most secure way to effortlessly access, track, and manage your clipboard history.",
"author": "Andy Young <[email protected]>",
"scripts": {
"dev": "plasmo dev",
"dev:firefox": "plasmo dev --target=firefox-mv-2",
"build": "plasmo build",
"build:firefox": "ts-node scripts/build-firefox-setup.ts && prettier package.json --write && plasmo build --target=firefox-mv2 && ts-node scripts/build-firefox-teardown.ts",
"package": "plasmo package",
"package:firefox": "plasmo package --target=firefox-mv2",
"lint": "eslint .",
"format": "prettier . --write"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/react": "^11.13.3",
"@hookform/resolvers": "^3.9.0",
"@mantine/core": "6.0.21",
"@mantine/hooks": "^7.12.2",
"@mantine/modals": "6.0.21",
"@mantine/notifications": "6.0.21",
"@marko19907/string-to-color": "^1.0.0",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.12.0",
"@tabler/icons-react": "^3.14.0",
"@tanstack/react-query": "^5.55.4",
"date-fns": "3.1.0",
"jotai": "^2.9.3",
"plasmo": "0.89.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.53.0",
"react-virtualized-auto-sizer": "^1.0.25",
"react-window": "^1.8.10",
"short-time-ago": "^2.0.0",
"ts-results": "^3.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.16.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.258",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@types/react-window": "^1.8.8",
"eslint": "^9.16.0",
"prettier": "3.2.4",
"ts-node": "^10.9.2",
"typescript": "5.3.3",
"typescript-eslint": "^8.16.0"
},
"manifest": {
"permissions": [
"offscreen",
"clipboardRead",
"clipboardWrite",
"unlimitedStorage",
"contextMenus",
"scripting",
"activeTab"
]
}
}