-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.23 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.23 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
{
"name": "keycode",
"version": "0.1.0",
"description": "Terminal-based presentation tool that renders .sld slide files in the terminal using React and Ink",
"license": "MIT",
"author": "Lemi Orhan Ergin <lemi@craftgate.io>",
"repository": {
"type": "git",
"url": "https://github.com/lemiorhan/keycode.git"
},
"homepage": "https://github.com/lemiorhan/keycode",
"bugs": {
"url": "https://github.com/lemiorhan/keycode/issues"
},
"keywords": [
"presentation",
"terminal",
"slides",
"cli",
"ink",
"react",
"macos",
"speaker",
"talk",
"console"
],
"type": "module",
"bin": {
"keycode": "./dist/src/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.tsx",
"start": "node dist/src/cli.js",
"test": "node --test --import tsx test/*.test.ts"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"ink": "^5.2.1",
"pdfkit": "^0.18.0",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"string-width": "^7.2.0"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/pdfkit": "^0.17.6",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.3.12",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}