-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
{
"name": "chatgpt-to-notion",
"displayName": "ChatGPT to Notion",
"version": "1.11.0",
"description": "__MSG_extensionDescription__",
"author": "Théo Lartigau",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@notionhq/client": "^2.2.3",
"@plasmohq/storage": "^0.13.1",
"@tryfabric/martian": "^1.2.4",
"dayjs": "^1.11.7",
"node-html-markdown": "^1.3.0",
"plasmo": "0.85.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"shrink-string": "^3.1.2",
"tailwind-merge": "^2.2.1"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "3.6.0",
"@types/chrome": "0.0.202",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.20",
"prettier": "2.7.1",
"tailwindcss": "^3.2.4",
"typescript": "4.9.3"
},
"manifest": {
"default_locale": "en",
"web_accessible_resources": [
{
"resources": [
"assets/tab-demo.gif",
"assets/popup_notification.html",
"assets/sdk_translations.json",
"assets/icon.png",
"assets/illustration.png",
"assets/merchants.json"
],
"matches": [
"*://*/*"
]
}
],
"host_permissions": [
"https://api.notion.com/*",
"https://chatgpt-to-notion.onrender.com/*",
"https://chat.openai.com/*",
"https://chatgpt.com/*"
],
"permissions": [
"tabs",
"webRequest",
"scripting"
]
}
}