@stacksjs/ts-validation
Version:
A simple TypeScript starter kit using Bun.
74 lines (73 loc) • 2.04 kB
JSON
{
"name": "@stacksjs/ts-validation",
"type": "module",
"version": "0.4.9",
"description": "A simple TypeScript starter kit using Bun.",
"author": "Chris Breuer <chris@stacksjs.org>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/ts-validation#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/ts-validation.git"
},
"bugs": {
"url": "https://github.com/stacksjs/ts-validation/issues"
},
"keywords": [
"typescript",
"starter",
"kit",
"bun",
"package"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"import": "./dist/*"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"dist"
],
"scripts": {
"build": "bun --bun build.ts",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"prepublishOnly": "bun --bun run build",
"test": "bun test",
"lint": "bunx --bun pickier run --mode lint .",
"lint:fix": "bunx --bun pickier run --mode lint . --fix",
"format": "bunx --bun pickier run --mode format .",
"format:fix": "bunx --bun pickier run --mode format . --write",
"changelog": "bunx logsmith --verbose",
"changelog:generate": "bunx logsmith --output CHANGELOG.md",
"release": "bun --bun run changelog:generate && bunx --bun bumpx prompt --recursive",
"dev:docs": "bun --bun vitepress dev docs",
"build:docs": "bun --bun vitepress build docs",
"preview:docs": "bun --bun vitepress preview docs",
"typecheck": "bun --bun tsc --noEmit"
},
"dependencies": {
"dompurify": "^3.3.1"
},
"devDependencies": {
"@stacksjs/docs": "^0.70.23",
"better-dx": "^0.2.5"
},
"overrides": {
"unconfig": "0.3.10"
},
"git-hooks": {
"pre-commit": {
"staged-lint": {
"*.{js,ts,json,yaml,yml,md}": "bunx --bun pickier run --mode lint --fix"
}
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
}
}