-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.29 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.29 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "orshot-cli",
"version": "2.0.0",
"description": "CLI tool for Orshot - Automated Visual Content Generation",
"keywords": [
"orshot",
"image generation",
"pdf generation",
"cli",
"automated image generation"
],
"author": {
"name": "Rishi Mohan",
"email": "iamrishi.ms@gmail.com"
},
"license": "MIT",
"homepage": "https://orshot.com",
"repository": {
"type": "git",
"url": "git+https://github.com/rishimohan/orshot-cli.git"
},
"engines": {
"node": ">=18.0.0"
},
"bin": {
"orshot": "bin/orshot.js"
},
"main": "src/index.js",
"scripts": {
"dev": "node bin/orshot.js",
"build": "echo 'No build step needed'",
"test": "node examples/usage.js",
"lint": "eslint src/ bin/ examples/",
"lintfix": "eslint src/ bin/ examples/ --fix",
"example": "node examples/usage.js",
"prepublishOnly": "npm run lint"
},
"dependencies": {
"commander": "^11.1.0",
"axios": "^1.6.0",
"chalk": "^4.1.2",
"inquirer": "^8.2.6",
"ora": "^5.4.1",
"conf": "^10.2.0",
"fs-extra": "^11.1.1",
"path": "^0.12.7"
},
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.0.0"
},
"files": [
"bin/",
"src/",
"examples/",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}