-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.02 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
{
"name": "zoom-chat-to-ppro-markers",
"version": "0.0.1",
"description": "Import a [Zoom `.chat` File](https://support.zoom.com/hc/en/article?id=zm_kb&sysparm_article=KB0067312) for a Recording as Clip (or Sequence) [Markers](https://helpx.adobe.com/premiere-pro/using/markers.html) into Adobe Premiere Pro.",
"main": "index.js",
"type": "commonjs",
"keywords": [
"jsx",
"adobe",
"extendscript",
"zoom",
"adobe-premiere",
"adobe-extendscript",
"zoom-chat"
],
"author": "Ritvik Nag <me@ritviknag.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/rnag/zoom-chat-to-ppro-markers.git"
},
"scripts": {
"build": "npm run compile && npm run minify",
"compile": "tsc",
"minify": "esbuild --minify --target=es5 .build/*.js --outdir=minified --out-extension:.js=.jsx"
},
"devDependencies": {
"@types/node": "^20.11.18",
"esbuild": "^0.20.0",
"extendscript-es5-shim-ts": "^0.0.1",
"types-for-adobe": "github:pravdomil/types-for-adobe",
"typescript": "^5.3.3"
}
}