-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "fzstd",
"version": "0.1.1",
"description": "High performance Zstandard (de)compression",
"main": "./lib/index.js",
"module": "./esm/index.mjs",
"types": "./lib/index.d.ts",
"unpkg": "./umd/index.js",
"jsdelivr": "./umd/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./esm/index.mjs",
"require": "./lib/index.js"
}
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/101arrowz/fzstd.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/101arrowz/fzstd/issues"
},
"author": "Arjun Barrett",
"license": "MIT",
"keywords": [
"compression",
"decompression",
"zstd",
"zstandard",
"browser",
"node.js",
"tiny",
"fast"
],
"scripts": {
"build": "npm run build:lib",
"script": "node -r ts-node/register scripts/$SC.ts",
"build:lib": "tsc && tsc --project tsconfig.esm.json && npm run build:rewrite && npm run build:umd",
"build:umd": "SC=buildUMD npm run script",
"build:rewrite": "SC=rewriteBuilds npm run script",
"prepack": "npm run build"
},
"devDependencies": {
"@types/node": "^14.11.2",
"terser": "^5.3.8",
"ts-node": "^9.0.0",
"typescript": "^4.1.5",
"zstandard-wasm": "^1.5.0-rev.2"
}
}