-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.01 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
{
"name": "@sectiontn/gitposter",
"version": "0.1.7",
"description": "Generate a beautiful printable poster from any git repository",
"author": "Rayen Sbai <rayensbai2@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sectiontn/gitposter.git"
},
"keywords": [
"git",
"poster",
"canvas",
"cli",
"github"
],
"type": "module",
"bin": {
"gitposter": "bin/gitposter.js"
},
"files": [
"dist/",
"assets/fonts/",
"bin/"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"prepublishOnly": "npm run build && chmod +x dist/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.58",
"@octokit/rest": "^21.0.0",
"commander": "^12.0.0",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@types/node": "^20.19.39",
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
}
}