@corentinth/chisels
Version:
Collection of utilities for JavaScript and TypeScript, lightweight and tree-shakable.
63 lines (62 loc) • 1.65 kB
JSON
{
"name": "@corentinth/chisels",
"type": "module",
"version": "1.3.1",
"packageManager": "pnpm@10.8.0",
"description": "Collection of utilities for JavaScript and TypeScript, lightweight and tree-shakable.",
"author": "Corentin Thomasset <corentinth@proton.me> (https://corentin.tech)",
"license": "MIT",
"funding": "https://github.com/sponsors/CorentinTh",
"homepage": "https://github.com/CorentinTh/chisels#readme",
"repository": {
"type": "git",
"url": "https://github.com/CorentinTh/chisels"
},
"bugs": {
"url": "https://github.com/CorentinTh/chisels/issues"
},
"keywords": [
"utilities",
"utils",
"typescript",
"javascript",
"tree-shakable",
"esm",
"module"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "pnpm run test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build",
"script:generate-api-doc": "tsx ./scripts/generate-api-doc.ts",
"release": "bumpp --commit --push --tag && npm publish"
},
"devDependencies": {
"@antfu/eslint-config": "^4.11.0",
"@vitest/coverage-v8": "^3.0.9",
"bumpp": "^10.1.0",
"eslint": "^9.23.0",
"tsdoc-extractor": "^0.2.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"unbuild": "^3.5.0",
"vitest": "^3.0.9"
}
}