UNPKG

@stacksjs/ts-validation

Version:

A simple TypeScript starter kit using Bun.

65 lines (64 loc) 1.88 kB
{ "name": "@stacksjs/ts-validation", "type": "module", "version": "0.4.5", "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", "lint": "bunx --bun eslint .", "lint:fix": "bunx --bun eslint . --fix", "fresh": "bunx rimraf node_modules/ bun.lock && bun i", "changelog": "bunx changelogen --output CHANGELOG.md", "prepublishOnly": "bun --bun run build", "release": "bun run changelog && bunx bumpp package.json --all", "test": "bun test", "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.2.6" }, "devDependencies": { "@stacksjs/docs": "^0.70.23", "@stacksjs/eslint-config": "^4.10.2-beta.3", "@types/bun": "^1.2.17", "bumpp": "^10.2.0", "bun-plugin-dtsx": "^0.21.12", "bunfig": "^0.10.0", "changelogen": "^0.6.1", "lint-staged": "^15.5.2", "simple-git-hooks": "^2.13.0", "typescript": "^5.8.3" }, "overrides": { "unconfig": "0.3.10" }, "lint-staged": { "*.{js,ts}": "bunx --bun eslint . --fix" } }