-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.4 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": "arebyte-plugin-v4",
"displayName": "Arebyte plugin v4",
"version": "0.0.1",
"description": "Arebyte Plugin: digital art from your browser",
"author": "enBloc <[email protected]>",
"type": "module",
"scripts": {
"dev": "plasmo dev",
"dev:firefox": "plasmo dev --target=firefox-mv3",
"build": "plasmo build",
"build:firefox": "plasmo build --target=firefox-mv3",
"package": "plasmo package",
"prepare": "husky",
"test": "NODE_OPTIONS='--experimental-vm-modules' pnpm jest",
"test:changed": "NODE_OPTIONS='--experimental-vm-modules' pnpm jest -o"
},
"dependencies": {
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.12.0",
"@strapi/blocks-react-renderer": "^1.0.1",
"plasmo": "0.89.2",
"qs": "^6.13.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.13",
"webextension-polyfill": "^0.12.0",
"yup": "^1.4.0",
"zustand": "5.0.0-rc.2"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/chrome": "0.0.258",
"@types/jest": "^29.5.13",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@types/webextension-polyfill": "^0.12.1",
"eslint": "^9.10.0",
"eslint-plugin-react": "^7.36.1",
"formik": "^2.4.6",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-webextension-mock": "^3.9.0",
"lint-staged": "^15.2.10",
"prettier": "3.2.4",
"react-transition-group": "^4.4.5",
"ts-jest": "^29.2.5",
"typescript": "5.3.3",
"typescript-eslint": "^8.6.0",
"webextension-polyfill": "^0.12.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
},
"manifest": {
"homepage_url": "$PLASMO_PUBLIC_SITE_URL",
"host_permissions": [
"$PLASMO_PUBLIC_SITE_URL/*",
"https://arebyte-plugin-space.lon1.digitaloceanspaces.com/*"
],
"permissions": [
"alarms",
"tabs",
"activeTab",
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "{013da1a4-7fc0-4f54-8bb8-37e575903c25}"
}
}
}
}