-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "gatsby-remark-videos",
"description": "Processes videos in markdown so they can be used in the production build.",
"version": "0.4.1",
"author": "Michael Orenstein <[email protected]>",
"bugs": {
"url": "https://github.com/Mike-Dax/gatsby-remark-videos/issues"
},
"dependencies": {
"gatsby-plugin-ffmpeg": "^0.4.0",
"is-relative-url": "^3.0.0",
"slash": "^3.0.0",
"unist-util-select": "^1.5.0"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.18",
"@types/is-relative-url": "^3.0.0",
"typescript": "^4.3.5"
},
"homepage": "https://github.com/Mike-Dax/gatsby-remark-videos",
"keywords": [
"gatsby",
"gatsby-plugin",
"video",
"markdown",
"remark",
"ffmpeg"
],
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"peerDependencies": {
"fluent-ffmpeg": "^2.1.2",
"gatsby": "^3.12.0"
},
"repository": "https://github.com/Mike-Dax/gatsby-remark-videos",
"scripts": {
"build": "tsc",
"prepare": "yarn run build",
"watch": "tsc --watch",
"prepublish": "yarn run build"
}
}