-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "toggle-experiment",
"displayName": "Toggle Experiment",
"description": "A browser extension to inject the LocalStorage of a website for Optimizely experiments.",
"version": "0.11.2",
"author": "Aaron van den Berg",
"homepage": "https://aaronvandenberg.nl/",
"scripts": {
"dev": "plasmo dev",
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/**/* --fix",
"build": "plasmo build",
"package": "plasmo package"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@mantine/core": "^6.0.15",
"@mantine/hooks": "^6.0.15",
"@mantine/notifications": "^6.0.15",
"@plasmohq/storage": "^1.6.1",
"@tabler/icons-react": "^2.22.0",
"immer": "^9.0.21",
"plasmo": "0.67.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.7",
"zustand": "^4.3.8"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "3.6.3",
"@types/chrome": "0.0.237",
"@types/node": "18.16.18",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"eslint-plugin-perfectionist": "^1.4.0",
"eslint-plugin-react": "^7.32.2",
"prettier": "2.8.8",
"typescript": "4.9.5"
},
"manifest": {
"host_permissions": [
"http://*/*",
"https://*/*"
],
"permissions": [
"contextMenus",
"scripting"
]
},
"volta": {
"node": "18.16.0"
}
}