-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.84 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
{
"name": "notion-ai-anywhere",
"displayName": "Notion AI Anywhere",
"version": "1.1.8",
"description": "notion-ai-anywhere",
"author": "smackgg",
"scripts": {
"dev": "plasmo dev",
"build": "npm run build-chrome && npm run build-ff && npm run build-edge",
"build-chrome": "plasmo build --target=chrome-mv3 --zip",
"build-ff": "plasmo build --target=firefox-mv2 --zip",
"build-edge": "plasmo build --target=edge-mv3 --zip",
"package": "plasmo package",
"patch": "pnpm changeset && pnpm changeset version"
},
"dependencies": {
"@changesets/cli": "^2.26.1",
"@heroicons/react": "^2.0.16",
"@notionhq/client": "^2.2.3",
"@plasmohq/messaging": "^0.1.6",
"@plasmohq/storage": "^1.3.1",
"@tryfabric/martian": "^1.2.4",
"can-ndjson-stream": "^1.0.2",
"classnames": "^2.3.2",
"copy-to-clipboard": "^3.3.3",
"daisyui": "^2.51.5",
"i18next": "^22.4.13",
"plasmo": "0.67.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^12.2.0",
"react-markdown": "^8.0.6",
"shrink-string": "^3.1.2",
"uuid": "^9.0.0"
},
"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",
"postcss-convert-rem-to-pixel": "^0.0.0",
"prettier": "2.7.1",
"tailwindcss": "^3.2.4",
"typescript": "4.9.3"
},
"manifest": {
"default_locale": "en",
"host_permissions": [
"https://*/*"
],
"permissions": [
"activeTab"
],
"commands": {
"show-panel": {
"suggested_key": {
"default": "Ctrl+K",
"mac": "Command+K"
},
"description": "Activate NotionAIAnywhere on page"
}
}
}
}