-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.26 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
{
"private": true,
"type": "module",
"name": "fetchcrunch",
"description": "A tool to create a self unpacking HTML pages with DEFLATE compressed JS",
"version": "1.0.0-beta.7",
"license": "MIT",
"exports": {
".": {
"node": "./node.js"
},
"./base": "./base.js",
"./wasm-zopfli-node": "./wasm-zopfli-node.js",
"./wasm-zopfli-base": "./wasm-zopfli-base.js"
},
"sideEffects": false,
"bin": "./cli.js",
"author": {
"name": "Anton Khlynovskiy",
"email": "[email protected]"
},
"readme": "README.md",
"repository": {
"type": "git",
"url": "[email protected]:subzey/fetchcrunch.git"
},
"scripts": {
"test": "node test",
"build": "tsc -p src/package && node build-tools",
"build-wasm": "emcc -O3 -sINITIAL_MEMORY=1mb -sALLOW_MEMORY_GROWTH=1 -sTOTAL_STACK=64kb -sSTRICT -sFILESYSTEM=0 -sWASM=1 --no-entry -o artifacts/zopfli-with-dictionary.wasm zopfli/src/zopfli/deflate.c zopfli/src/zopfli/lz77.c zopfli/src/zopfli/cache.c zopfli/src/zopfli/katajainen.c zopfli/src/zopfli/squeeze.c zopfli/src/zopfli/blocksplitter.c zopfli/src/zopfli/hash.c zopfli/src/zopfli/tree.c zopfli/src/zopfli/util.c src/package/zopfli-with-dictionary.c"
},
"devDependencies": {
"@types/node": "^18.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"parse5": "^7.0.0"
}
}