-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.02 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.02 KB
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
{
"name": "@shotstack/cli",
"version": "0.4.1",
"description": "Command-line interface for the Shotstack video rendering API.",
"license": "Apache-2.0",
"homepage": "https://github.com/shotstack/shotstack-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/shotstack/shotstack-cli.git"
},
"bugs": {
"url": "https://github.com/shotstack/shotstack-cli/issues"
},
"type": "module",
"bin": {
"shotstack": "dist/shotstack.js"
},
"files": [
"dist/shotstack.js",
"SKILL.md",
"references"
],
"scripts": {
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --target=node --minify --outfile=dist/shotstack.js --banner='#!/usr/bin/env node' && chmod +x dist/shotstack.js",
"prepack": "bun run build",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@shotstack/schemas": "^1.10.10",
"commander": "^12.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.6.0"
}
}