-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 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
{
"name": "canvas-capture",
"version": "2.1.1",
"description": "Record the canvas as an image, mp4 video, or gif from the browser",
"main": "dist/canvas-capture.js",
"types": "dist/@types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack && npm run build-demo",
"build-demo": "webpack --config demo/webpack.config.js",
"deploy": "npm run build && npm publish",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amandaghassaei/canvas-capture.git"
},
"author": "Amanda Ghassaei",
"license": "MIT",
"private": false,
"files": [
"dist/*"
],
"keywords": [
"mp4",
"video",
"gif",
"record",
"canvas",
"save",
"download"
],
"bugs": {
"url": "https://github.com/amandaghassaei/canvas-capture/issues"
},
"homepage": "https://github.com/amandaghassaei/canvas-capture#readme",
"dependencies": {
"@ffmpeg/ffmpeg": "^0.10.1",
"changedpi": "^1.0.4",
"file-saver": "^2.0.5",
"jszip": "^3.7.1",
"mdn-polyfills": "^5.20.0",
"micromodal": "^0.4.6"
},
"devDependencies": {
"@ffmpeg/core": "^0.10.0",
"@types/file-saver": "^2.0.1",
"@types/micromodal": "^0.3.2",
"@types/node": "^14.14.22",
"copy-webpack-plugin": "^11.0.0",
"express": "^4.17.2",
"raw-loader": "^4.0.2",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}