-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "clip2tana",
"displayName": "Clip2tana",
"version": "0.1.3",
"description": "Clips current webpage and selection to tana-paste format",
"author": "Brett Adam",
"scripts": {
"dev": "plasmo dev",
"build": "NODE_OPTIONS='--trace-deprecation' plasmo build",
"package": "plasmo package"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fastify/deepmerge": "^2.0.0",
"@mui/icons-material": "^5.14.14",
"@mui/material": "^5.14.14",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.11.0",
"lodash": "^4.17.21",
"plasmo": "0.88.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"turndown": "^7.1.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.258",
"@types/lodash": "^4.17.13",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"prettier": "3.2.4",
"typescript": "5.3.3"
},
"manifest": {
"host_permissions": [
"https://*/*"
],
"permissions": [
"storage",
"scripting",
"activeTab",
"clipboardRead",
"clipboardWrite"
],
"commands": {
"clip2tana": {
"description": "Clip current tab",
"suggested_key": {
"default": "Ctrl+Shift+P",
"mac": "Command+Shift+P"
}
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
}
}