a0154dabf5
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"name": "@robonen/encoding",
|
|
"version": "0.0.1",
|
|
"license": "Apache-2.0",
|
|
"description": "Encoding utilities for TypeScript",
|
|
"keywords": [
|
|
"encoding",
|
|
"tools"
|
|
],
|
|
"author": "Robonen Andrew <robonenandrew@gmail.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/robonen/tools.git",
|
|
"directory": "core/encoding"
|
|
},
|
|
"packageManager": "pnpm@10.34.1",
|
|
"engines": {
|
|
"node": ">=24.16.0"
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.cts",
|
|
"default": "./dist/index.cjs"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint:check": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"test": "vitest run",
|
|
"dev": "vitest dev",
|
|
"bench": "vitest bench",
|
|
"build": "tsdown"
|
|
},
|
|
"devDependencies": {
|
|
"@robonen/eslint": "workspace:*",
|
|
"@robonen/tsconfig": "workspace:*",
|
|
"@robonen/tsdown": "workspace:*",
|
|
"eslint": "catalog:",
|
|
"tsdown": "catalog:"
|
|
}
|
|
}
|