65 lines
1.1 KiB
JSON
65 lines
1.1 KiB
JSON
{
|
|
"name": "@sindresorhus/base62",
|
|
"version": "1.0.0",
|
|
"description": "Encode & decode strings, bytes, and integers to Base62",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/base62",
|
|
"funding": "https://github.com/sponsors/sindresorhus",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "https://sindresorhus.com"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
"types": "./index.d.ts",
|
|
"default": "./index.js"
|
|
},
|
|
"sideEffects": false,
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"base.js",
|
|
"base.d.ts"
|
|
],
|
|
"keywords": [
|
|
"base62",
|
|
"base",
|
|
"base64",
|
|
"base-62",
|
|
"encode",
|
|
"decode",
|
|
"shorten",
|
|
"compress",
|
|
"compact",
|
|
"alphanumeric",
|
|
"serialization",
|
|
"url",
|
|
"safe",
|
|
"text",
|
|
"string",
|
|
"number",
|
|
"integer",
|
|
"bigint",
|
|
"bytes",
|
|
"uint8array",
|
|
"algorithm",
|
|
"transformation",
|
|
"encoder",
|
|
"decoder",
|
|
"encoding",
|
|
"decoding",
|
|
"url-friendly",
|
|
"url-safe"
|
|
],
|
|
"devDependencies": {
|
|
"ava": "^6.1.2",
|
|
"xo": "^0.58.0"
|
|
}
|
|
}
|