-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.5 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.5 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
{
"name": "notionai-plus",
"displayName": "NotionAI Plus",
"version": "0.1.5",
"description": "NotionAI Plus is a browser extension that brings the power of NotionAI to any website you visit.",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package",
"static": "npx prettier . --write"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@headlessui/tailwindcss": "^0.1.3",
"@heroicons/react": "^2.0.18",
"@plasmohq/messaging": "^0.1.8",
"@plasmohq/storage": "^1.9.0",
"@radix-ui/themes": "^2.0.1",
"@tailwindcss/forms": "^0.5.7",
"cache-manager": "^5.3.1",
"claude-ai": "^1.2.2",
"eventsource-parser": "^1.1.1",
"jotai": "^2.6.0",
"lodash-es": "^4.17.21",
"lucide-react": "^0.121.0",
"ofetch": "^1.3.3",
"plasmo": "0.84.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.6",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"rehype-mathjax": "^4.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1",
"websocket-as-promised": "^2.0.1"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "4.0.1",
"@tailwindcss/typography": "^0.5.10",
"@types/chrome": "0.0.210",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"postcss": "8.4.31",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"radix-themes-tw": "^0.0.8",
"tailwindcss": "3.2.4",
"theme-change": "^2.5.0",
"typescript": "^5.3.2",
"webextension-polyfill": "^0.10.0"
},
"manifest": {
"host_permissions": [
"https://*/*"
],
"permissions": [
"contextMenus"
],
"commands": {
"activate-notionai": {
"suggested_key": {
"default": "Ctrl+K",
"mac": "Command+K"
},
"description": "Activate NotionAI on page"
}
}
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": false,
"arrowParens": "avoid",
"bracketSpacing": true,
"endOfLine": "lf",
"bracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"useTabs": true
}
}