mirror of
https://github.com/robonen/tools.git
synced 2026-03-20 02:44:45 +00:00
52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
{
|
|
"name": "@robonen/stdlib",
|
|
"version": "0.0.1",
|
|
"license": "UNLICENSED",
|
|
"description": "A collection of tools, utilities, and helpers for TypeScript",
|
|
"keywords": [
|
|
"stdlib",
|
|
"utils",
|
|
"tools",
|
|
"helpers",
|
|
"math",
|
|
"algorithms",
|
|
"data-structures"
|
|
],
|
|
"author": "Robonen Andrew <robonenandrew@gmail.com>",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/robonen/tools.git",
|
|
"directory": "packages/stdlib"
|
|
},
|
|
"packageManager": "pnpm@9.2.0",
|
|
"engines": {
|
|
"node": ">=20.14.0"
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"dev": "vitest dev",
|
|
"build": "unbuild"
|
|
},
|
|
"devDependencies": {
|
|
"@robonen/tsconfig": "workspace:*",
|
|
"@vitest/coverage-v8": "^1.6.0",
|
|
"pathe": "^1.1.2",
|
|
"unbuild": "^2.0.0",
|
|
"vitest": "^1.6.0"
|
|
}
|
|
}
|