-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.02 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
{
"name": "base64-pro",
"version": "1.0.0",
"scripts": {
"build": "tsup && tsc"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"unpkg": "dist/index.global.js",
"jsdelivr": "dist/index.global.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "[email protected]:haochuan9421/base64-pro.git"
},
"author": "haochuan9421 <[email protected]>",
"keywords": [
"base64",
"encode",
"decode",
"unicode",
"arrayBuffer",
"utf-8",
"utf-16",
"DataURL",
"base64-pro"
],
"bugs": {
"url": "https://github.com/haochuan9421/base64-pro/issues"
},
"homepage": "https://github.com/haochuan9421/base64-pro",
"license": "MIT"
}