-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "next-base64-encoder",
"version": "1.3.0",
"description": "Base64 Encoder & Decoder NPM module, fully optimized for Next.js. C++ or Pure-JS, depending on your environments. Tree-shaking ready.",
"author": "Clément Warneys",
"license": "ISC",
"homepage": "https://github.com/warniiiz/next-base64-encoder",
"repository": {
"type": "git",
"url": "git+https://github.com/warniiiz/next-base64-encoder.git"
},
"type": "module",
"sideEffects": false,
"main": "./src/node/index.js",
"exports": {
".": {
"node": "./src/node/index.js",
"worker": "./src/node/index.js",
"browser": "./src/browser/index.js"
}
},
"scripts": {
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest ./test",
"perf": "node ./performance/local.js",
"lint": "eslint ./"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"buffer": "^6.0.3",
"eslint": "^9.4.0",
"globals": "^15.4.0",
"jest": "^29.7.0",
"webpack-cli": "^5.1.4"
},
"keywords": [
"base64",
"encoder",
"decoder",
"nextjs",
"browser",
"edge",
"edge-runtime"
]
}