-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 740 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 740 Bytes
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
{
"name": "md2cb",
"version": "1.0.0",
"description": "Markdown to clipboard converter. Converts GitHub Flavored Markdown (GFM) to rich HTML and copies it to the system clipboard for pasting into Word, Google Docs, Pages, etc.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"canvas": "^3.2.1",
"mathjax-full": "^3.2.1",
"playwright": "^1.58.1",
"sharp": "^0.34.5"
},
"devDependencies": {
"esbuild": "^0.27.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"canvas",
"esbuild",
"sharp"
]
}
}