-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 901 Bytes
/
package.json
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
{
"name": "auto-reveal",
"version": "0.4.0",
"description": "The command-line interface for reveal.js presentations.",
"keywords": [
"reveal.js",
"cli",
"markdown"
],
"repository": {
"type": "git",
"url": "[email protected]:mainmatter/auto-reveal.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"bin": {
"auto-reveal": "./bin/auto-reveal.js"
},
"scripts": {
"format": "biome check --write .",
"lint": "biome check .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"commander": "^12.1.0",
"reveal.js": "5.1.0",
"vite": "6.0.6",
"vite-plugin-ejs": "1.7.0",
"vite-plugin-static-copy": "1.0.6"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"release-plan": "0.9.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}