-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.18 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
{
"name": "slidev-decks",
"version": "1.2.1",
"description": "CLI companion for managing multiple Slidev presentations",
"keywords": [
"cli",
"multi-deck",
"presentation",
"slides",
"slidev",
"talks"
],
"license": "MIT",
"author": "Afonso Ramos",
"repository": {
"type": "git",
"url": "https://github.com/afonsojramos/slidev-decks"
},
"bin": {
"sd": "./dist/cli.mjs",
"slidev-decks": "./dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check .",
"demo": "vhs docs/demo.tape",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"cac": "^7.0.0",
"gray-matter": "^4.0.3",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^25.5.2",
"husky": "^9.1.7",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
},
"engines": {
"node": ">=22"
}
}