forked from Creatomate/creatomate-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 868 Bytes
/
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
{
"name": "@creatomate/preview",
"version": "1.5.0",
"description": "Render video and image previews in your web app prior to creating a final MP4, GIF, JPEG or PNG through the API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepack": "npm run build",
"watch": "nodemon --watch src --exec 'npm run build'"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/creatomate/creatomate-preview.git"
},
"keywords": [],
"author": "Creatomate",
"license": "MIT",
"homepage": "https://creatomate.com/javascript-video-sdk",
"devDependencies": {
"@types/uuid": "^9.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"uuid": "^9.0.0"
}
}