-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 875 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
{
"name": "cli-slides",
"version": "1.4.1",
"description": "A framework to create slide decks in the terminal",
"author": "Joel Lord <[email protected]>",
"license": "ISC",
"main": "./src/presentation.js",
"module": "./esm/presentation.mjs",
"types": "./typings/presentation.d.ts",
"exports": {
"require": "./src/presentation.js",
"import": "./esm/presentation.mjs"
},
"bin": {
"cli-slides": "./bin/presenter.js"
},
"homepage": "https://github.com/joellord/cli-slides#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/joellord/cli-slides.git"
},
"files": [
"assets",
"bin",
"esm",
"src",
"typings"
],
"engines": {
"node": ">=12",
"npm": ">=6"
},
"keywords": [
"slides",
"cli"
],
"bugs": {
"url": "https://github.com/joellord/cli-slides/issues"
}
}