UNPKG

deverything

Version:
66 lines 1.72 kB
{ "name": "deverything", "version": "4.1.0", "description": "Everything you need for Dev", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "sideEffects": false, "files": [ "dist/**" ], "repository": { "type": "git", "url": "git+https://github.com/codeledge/deverything.git" }, "keywords": [ "checks", "dates", "fake", "formatters", "generator", "helpers", "math", "numbers", "random", "testing", "toolkit", "types", "utils", "validators", "words" ], "author": "ogroppo", "license": "MIT", "devDependencies": { "@changesets/cli": "^2.29.5", "@types/node": "^24.0.13", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "eslint": "^8.57.0", "eslint-config-alloy": "^5.1.2", "eslint-config-prettier": "^10.1.8", "eslint-plugin-import": "^2.32.0", "eslint-plugin-prettier": "^5.5.3", "eslint-plugin-sort-imports-es6-autofix": "^0.6.0", "prettier": "^3.6.2", "timezone-mock": "^1.3.6", "tsup": "^8.5.0", "typescript": "^5.8.3", "vitest": "^2.0.0" }, "scripts": { "build": "tsup --treeshake", "ci:publish": "pnpm publish --no-git-checks", "clean": "rm -rf node_modules && rm -rf dist", "dev": "tsup --watch", "format": "prettier --write src/**/*.ts", "format:check": "prettier --check src/**/*.ts", "lint": "TIMING=1 eslint src/**/*.ts --fix", "lint:format": "pnpm format && pnpm lint", "prepublish": "pnpm test && pnpm build", "test": "vitest run", "test:watch": "vitest", "release": "pnpm changeset && pnpm changeset version" } }