UNPKG

ts-essentials

Version:
57 lines (56 loc) 1.81 kB
{ "name": "ts-essentials", "version": "10.1.1", "description": "All essential TypeScript types in one place", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": "git@github.com:ts-essentials/ts-essentials.git", "homepage": "https://github.com/ts-essentials/ts-essentials#readme", "author": "Krzysztof Kaczor <chris@kaczor.io>", "license": "MIT", "scripts": { "build": "rimraf ./dist && tsc -p tsconfig.prod.json --outDir ./dist", "formatDeclarations": "prettier --ignore-path *.js --write dist/*.d.ts", "prepublishOnly": "yarn test && yarn build && yarn formatDeclarations", "test": "node scripts/update-test-tsconfig.js && prettier -c {lib,test}/**/*.ts && eslint && tsc --project tsconfig.test.json --outDir ./testDist && rimraf ./testDist", "test:fix": "node scripts/update-test-tsconfig.js && prettier --write {lib,test}/**/*.ts && eslint --fix", "prerelease": "yarn test", "release": "yarn build && yarn formatDeclarations && yarn changeset publish", "setTsVersion": "node scripts/sync-ts-version.js" }, "files": [ "dist" ], "peerDependencies": { "typescript": ">=4.5.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } }, "devDependencies": { "@changesets/cli": "^2.20.0", "@codechecks/build-size-watcher": "^0.1.0", "@codechecks/client": "^0.1.11", "@typescript-eslint/parser": "^8.15.0", "conditional-type-checks": "^1.0.4", "eslint": "^9.15.0", "eslint-plugin-expect-type": "^0.4.3", "prettier": "^2.0.0", "rimraf": "^3.0.2", "semver": "^7.6.3", "tsx": "4.10.5", "typescript": "^4.5.0" }, "keywords": [ "typescript", "types", "essentials", "utils", "toolbox", "toolbelt", "lodash", "underscore" ] }