@byloth/core
Version:
An unopinionated collection of useful functions and classes that I use widely in all my projects. 🔧
73 lines • 1.72 kB
JSON
{
"name": "@byloth/core",
"version": "2.2.2",
"description": "An unopinionated collection of useful functions and classes that I use widely in all my projects. 🔧",
"keywords": [
"Core",
"Collection",
"Classes",
"Functions",
"Utils",
"JavaScript",
"TypeScript",
"Library"
],
"homepage": "https://github.com/Byloth/core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Byloth/core.git"
},
"bugs": {
"url": "https://github.com/Byloth/core/issues"
},
"author": {
"name": "Matteo Bilotta",
"email": "me@byloth.dev",
"url": "https://www.byloth.dev/"
},
"license": "Apache-2.0",
"type": "module",
"files": [
"dist",
"src"
],
"main": "dist/core.umd.cjs",
"module": "dist/core.cjs",
"unpkg": "dist/core.global.js",
"jsdelivr": "dist/core.global.js",
"exports": {
".": {
"import": {
"types": "./src/index.ts",
"default": "./dist/core.esm.js"
},
"require": {
"types": "./src/index.ts",
"default": "./dist/core.cjs"
}
}
},
"types": "src/index.ts",
"devDependencies": {
"@byloth/eslint-config-typescript": "^3.2.2",
"@eslint/compat": "^2.0.0",
"@types/node": "^22.19.1",
"@vitest/coverage-v8": "^4.0.12",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vitest": "^4.0.12"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc",
"lint": "eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"ci": "pnpm install --frozen-lockfile"
}
}