-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathpackage.json
43 lines (43 loc) · 827 Bytes
/
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
{
"name": "js-base64",
"version": "3.7.7",
"description": "Yet another Base64 transcoder in pure-JS",
"main": "base64.js",
"module": "base64.mjs",
"types": "base64.d.ts",
"sideEffects": false,
"files": [
"base64.js",
"base64.mjs",
"base64.d.ts",
"base64.d.mts"
],
"exports": {
".": {
"import": {
"types": "./base64.d.mts",
"default": "./base64.mjs"
},
"require": {
"types": "./base64.d.ts",
"default": "./base64.js"
}
},
"./package.json": "./package.json"
},
"scripts": {
"test": "make clean && make test"
},
"devDependencies": {
"@types/node": "^20.11.5",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
},
"repository": "git+https://github.com/dankogai/js-base64.git",
"keywords": [
"base64",
"binary"
],
"author": "Dan Kogai",
"license": "BSD-3-Clause"
}