forked from googleworkspace/md2googleslides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.5 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "md2googleslides",
"version": "0.5.1",
"description": "Convert Markdown to Google Slides",
"engines": {
"npm": ">=9",
"node": ">=20.0.0"
},
"type": "module",
"exports": "index.js",
"files": [
"index.js",
"bin/",
"lib/",
"LICENSE",
"README.md",
"CONTRIBUTING.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "gts clean",
"compile": "tsc && babel --extensions '.ts,.js' --source-maps both -d lib/ src/",
"prepublish": "npm run compile",
"exec": "npm run compile && node bin/md2gslides.js",
"test": "mocha --require ./test/register --timeout 5000 \"test/**/*.spec.ts\"",
"test-debug": "mocha --debug-brk --inspect --require ./test/register --timeout 5000 \"test/**/*.spec.ts\"",
"lint": "gts lint",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com//googlesamples/md2googleslides"
},
"keywords": [
"markdown",
"google",
"slides"
],
"author": "Steven Bazyl",
"contributors": "Emmanuel Schanzer",
"license": "Apache-2.0",
"dependencies": {
"argparse": "^2.0.1",
"canvas": "^3.0.0",
"cli-progress": "^3.12.0",
"debug": "^4.4.0",
"file-url": "^4.0.0",
"formdata-polyfill": "^4.0.10",
"googleapis": "^144.0.0",
"highlight.js": "^11.11.1",
"highlightjs-bootstrap": "https://github.com/bootstrapworld/highlightjs-bootstrap",
"inline-styles-parse": "^1.2.0",
"just-camel-case": "^6.2.0",
"layout": "^2.2.0",
"lowdb": "^1.0",
"lowlight": "^3.3.0",
"markdown-it": "^14.1.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-container": "^4.0.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-expand-tabs": "^1.0.13",
"markdown-it-fence": "^0.1.3",
"markdown-it-lazy-headers": "^0.1.3",
"markdown-it-video": "^0.6.3",
"mathjax-full": "^3.2.2",
"mkdirp": "^3.0.1",
"native-css": "^2.0.0",
"opener": "^1.5.2",
"parse5": "^6.0.1",
"parse-color": "^1.0.0",
"probe-image-size": "^7.2.3",
"promise-retry": "^2.0.1",
"puppeteer": "^23.11.1",
"sharp": "^0.33.5",
"tmp": "0.2.3",
"tmp-promise": "^3.0.3",
"uuid": "^11.0.3"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/plugin-transform-class-properties": "7.25.9",
"@babel/plugin-transform-object-rest-spread": "^7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@babel/register": "7.25.9",
"@types/chai": "^4.3.14",
"@types/chai-as-promised": "^7.1.8",
"@types/chai-subset": "^1.3.5",
"@types/cli-progress": "^3.11.0",
"@types/debug": "^4.1.12",
"@types/jsonfile": "^6.1.4",
"@types/lowdb": "1.0.15",
"@types/markdown-it": "12.2.3",
"@types/mocha": "^10.0.6",
"@types/mock-fs": "^4.13.4",
"@types/node": "17.0.32",
"@types/parse-color": "^1.0.3",
"@types/parse5": "^6.0.3",
"@types/probe-image-size": "^7.2.4",
"@types/promise-retry": "^1.1.6",
"@types/tmp": "^0.2.6",
"@types/uuid": "^9.0.8",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"chai-subset": "1.6.0",
"gts": "5.3.0",
"mocha": "10.4.0",
"mock-fs": "5.2.0",
"nock": "^13.5.4",
"typescript": "5.4.5"
},
"overrides": {
"native-css": {
"css": "^3.0.0"
}
},
"bin": {
"md2gslides": "bin/md2gslides.js"
}
}