UNPKG

ts-essentials

Version:

All essential TypeScript types in one place

51 lines (50 loc) 1.47 kB
{ "name": "ts-essentials", "description": "All essential TypeScript types in one place", "keywords": [ "typescript", "types", "essentials", "utils", "toolbox", "toolbelt", "lodash", "underscore" ], "version": "9.4.2", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": "git@github.com:krzkaczor/ts-essentials.git", "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": "prettier -c **/*.ts && tsc --outDir ./testDist && rimraf ./testDist", "test:fix": "prettier --write **/*.ts && tsc --outDir ./testDist && rimraf ./testDist", "prerelease": "yarn test", "release": "yarn build && yarn formatDeclarations && yarn changeset publish", "setTsVersion": "node scripts/sync-ts-version.js" }, "files": [ "dist" ], "peerDependencies": { "typescript": ">=4.1.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } }, "devDependencies": { "@changesets/cli": "^2.11.2", "@codechecks/build-size-watcher": "^0.1.0", "@codechecks/client": "^0.1.11", "conditional-type-checks": "^1.0.4", "prettier": "^2.0.0", "rimraf": "^3.0.2", "typescript": "^4.1.0" } }