-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 963 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "shotstack-sdk-typescript",
"version": "0.2.6",
"description": "Official Typescript SDK for the Shotstack Cloud Video Editing API",
"author": "Shotstack",
"repository": {
"type": "git",
"url": "https://github.com/shotstack/shotstack-sdk-typescript"
},
"keywords": [
"video",
"ffmpeg",
"video-editing",
"video-editing-api",
"video-editor",
"video-api",
"cloud-video",
"video-processing"
],
"license": "MIT",
"main": "./dist/index.js",
"type": "module",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.js"
}
},
"typings": "./dist/index.d.ts",
"scripts": {
"clean": "rm -Rf dist/",
"build": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"es6-promise": "^4.2.4",
"url-parse": "^1.4.3"
},
"devDependencies": {
"typescript": "^4.0",
"@types/url-parse": "1.4.4"
}
}