-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "@shower/shower",
"description": "Shower HTML presentation engine",
"version": "3.3.1",
"author": {
"name": "Vadim Makeev",
"email": "hi@pepelsbey.dev",
"url": "https://pepelsbey.dev"
},
"homepage": "https://github.com/shower/shower",
"repository": {
"type": "git",
"url": "git://github.com/shower/shower.git"
},
"bugs": {
"url": "https://github.com/shower/shower/issues"
},
"license": "MIT",
"keywords": [
"shower",
"presentation",
"template"
],
"files": [
"pictures/**",
"index.html",
"LICENSE.md",
"README.md"
],
"engines": {
"node": "20"
},
"dependencies": {
"@shower/core": "^3.3.0",
"@shower/material": "^2.5.1",
"@shower/ribbon": "^3.5.2"
},
"devDependencies": {
"@shower/cli": "^0.3.1",
"path-exists-cli": "^2.0.0"
},
"scripts": {
"pdf": "shower pdf",
"start": "shower serve",
"bundle": "shower bundle --files '**' --files '!{docs,node_modules,bundled}{,/**}' --files '!*.{md,toml,json}'",
"archive": "shower archive --files '**' --files '!{docs,node_modules,bundled}{,/**}' --files '!*.{md,toml,json}'",
"publish": "shower publish --files '**' --files '!{docs,node_modules,bundled}{,/**}' --files '!*.{md,toml,json}'",
"test": "npm run bundle && ls bundled && npm run archive && path-exists presentation.zip"
}
}