-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 734 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 734 Bytes
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
{
"name": "codesnap",
"version": "1.0.0",
"description": "Beautiful code screenshots from the command line",
"main": "dist/cli.js",
"bin": {
"codesnap": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"code",
"screenshot",
"syntax-highlighting",
"carbon",
"cli",
"developer-tools"
],
"author": "ranjan98",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.1.0",
"puppeteer": "^23.11.1",
"shiki": "^1.24.2"
},
"devDependencies": {
"@types/node": "^22.10.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}