radashi
Version:
The modern, community-first TypeScript toolkit with all of the fast, readable, and minimal utility functions you need. Type-safe, dependency-free, tree-shakeable, fully tested.
86 lines (85 loc) • 2.45 kB
JSON
{
"name": "radashi",
"version": "12.5.1",
"type": "module",
"description": "The modern, community-first TypeScript toolkit with all of the fast, readable, and minimal utility functions you need. Type-safe, dependency-free, tree-shakeable, fully tested.",
"repository": {
"url": "git+https://github.com/radashi-org/radashi.git"
},
"homepage": "https://radashi.js.org",
"author": "Alec Larson",
"contributors": [
"Ray Epps"
],
"license": "MIT",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=16.0.0"
},
"main": "dist/radashi.cjs",
"module": "dist/radashi.js",
"exports": {
"require": {
"types": "./dist/radashi.d.cts",
"default": "./dist/radashi.cjs"
},
"types": "./dist/radashi.d.ts",
"default": "./dist/radashi.js"
},
"types": "dist/radashi.d.cts",
"files": [
"dist"
],
"scripts": {
"add-function": "radashi fn create",
"bench": "vitest bench",
"build": "tsup --clean",
"bundle-impact": "node scripts/run bundle-impact",
"dev": "tsup --clean --watch --sourcemap",
"format": "node scripts/run format",
"lint": "node scripts/run lint",
"move-function": "radashi fn move",
"test": "vitest run --coverage",
"test-branch": "node scripts/run test-branch",
"test-single": "node scripts/run test-single",
"update-browserslist": "node scripts/run update-browserslist"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.1",
"@radashi-org/biome-config": "link:scripts/biome-config",
"@types/node": "^22.7.7",
"@vitest/coverage-v8": "2.1.5",
"cspell": "8.15.4",
"prettier": "^3.3.2",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-sh": "^0.14.0",
"radashi-helper": "^0.1.11",
"tsup": "^8.1.0",
"typescript": "^5.5.2",
"vitest": "2.1.9"
},
"sideEffects": false,
"browserslist": [
"and_chr >= 57",
"chrome >= 57",
"and_ff >= 52",
"android >= 133",
"edge >= 15",
"samsung >= 7.4",
"safari >= 10.1",
"ios_saf >= 10.3",
"opera >= 44",
"firefox >= 52",
"unreleased and_chr versions",
"unreleased chrome versions",
"unreleased and_ff versions",
"unreleased android versions",
"unreleased edge versions",
"unreleased samsung versions",
"unreleased safari versions",
"unreleased ios_saf versions",
"unreleased opera versions",
"unreleased firefox versions",
"node >= 16"
]
}