-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
47 lines (47 loc) · 1.56 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
{
"name": "notion-boost-browser-extension",
"description": "Notion Boost - add outline and more to notion.so",
"private": false,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox --mv2",
"build": "wxt build",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"check-updates": "ncu -i --format repo,group",
"lint": "eslint .",
"package-chrome": "wxt zip",
"package-firefox": "wxt zip -b firefox",
"package": "pnpm run package-chrome && pnpm run package-firefox"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@wxt-dev/module-react": "^1.1.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"sass": "1.70.0",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"svg-inline-loader": "^0.8.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"wxt": "^0.19.11"
}
}