-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.58 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@grundstein/prepare-static-files",
"version": "0.0.13",
"description": "optimize and compress static files for hosting.",
"type": "module",
"bin": {
"prepare-static-files": "src/bin.mjs"
},
"main": "src/index.mjs",
"files": [
"src"
],
"scripts": {
"dev": "grundstein-server --dir ./docs --port 8002 --cors '*'",
"optimize": "src/bin.mjs --dir docs --no-compress",
"compress": "src/bin.mjs --dir docs --no-optimize-images",
"build": "src/bin.mjs --dir docs",
"rebuild": "npm run cleanup && src/bin.mjs --dir docs",
"format": "f -w",
"cleanup": "rm -f docs/*.webp docs/*.webm docs/*.gz docs/*.ogg docs/sample1.mp4 docs/*.mp3",
"test": "t"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grundstein/prepare-static-files.git"
},
"author": "TheSystemCollective",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/grundstein/prepare-static-files/issues"
},
"homepage": "https://github.com/grundstein/prepare-static-files#readme",
"dependencies": {
"@magic/cli": "0.0.46",
"@magic/fs": "0.0.30",
"@magic/log": "0.1.18",
"@magic/mime-types": "0.0.18",
"@magic/types": "0.1.23",
"fluent-ffmpeg": "2.1.3",
"node-zopfli-es": "2.0.4",
"plyo": "0.0.1",
"sharp": "0.33.5"
},
"devDependencies": {
"@grundstein/gss": "0.0.14",
"@magic/format": "0.0.60",
"@magic/test": "0.2.19"
},
"contributors": [
{
"name": "jascha ehrenreich",
"github": "jaeh"
},
{
"name": "daniela weiss",
"github": "mslitto"
}
]
}