-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.35 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "fast-base64",
"description": "Fastest possible base64 encoding/decoding using WebAssembly",
"version": "0.1.8",
"author": "gregor <gregor.mitscha-baude@gmx.at>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mitschabaude/fast-base64"
},
"keywords": [
"base64",
"wasm",
"simd",
"fast",
"deno"
],
"type": "module",
"main": "./dist/wasm.js",
"exports": {
".": {
"import": "./dist/wasm.js"
},
"./small": {
"import": "./small.js"
},
"./js": {
"import": "./js.js"
},
"./nano": {
"import": "./nano.js"
},
"./url": {
"import": "./url.js"
}
},
"types": "./index.d.ts",
"typesVersions": {
"*": {
"./index.d.ts": [
"./types/index.d.ts"
],
"*": [
"./types/*"
]
}
},
"files": [
"types",
"dist",
"js.js",
"small.js",
"nano.js",
"url.js"
],
"scripts": {
"build": "node build-lib.js",
"test": "npx chrode test-base64.js"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^16.4.3",
"binaryen": "^101.0.0",
"chrode": "^0.2.8",
"esbuild": "^0.12.15",
"esbuild-plugin-inline-worker": "^0.1.1",
"esbuild-plugin-wat": "0.1.4",
"eslint": "^7.31.0",
"find-cache-dir": "^3.3.1",
"wabt": "^1.0.23"
}
}