Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
56 lines
1.8 KiB
Plaintext
56 lines
1.8 KiB
Plaintext
{
|
|
"name": "ts-essentials",
|
|
"version": "10.0.3",
|
|
"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 {bench,lib,test}/**/*.ts && tsc --project tsconfig.test.json --outDir ./testDist && rimraf ./testDist",
|
|
"test:fix": "prettier --write {bench,lib,test}/**/*.ts && tsc --project tsconfig.test.json --outDir ./testDist && rimraf ./testDist",
|
|
"perf": "tsx ./bench/index.ts --benchErrorOnThresholdExceeded --benchPercentThreshold 1",
|
|
"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": {
|
|
"@arktype/attest": "^0.8.0",
|
|
"@changesets/cli": "^2.20.0",
|
|
"@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",
|
|
"semver": "^7.6.3",
|
|
"tsx": "4.10.5",
|
|
"typescript": "^4.5.0"
|
|
},
|
|
"keywords": [
|
|
"typescript",
|
|
"types",
|
|
"essentials",
|
|
"utils",
|
|
"toolbox",
|
|
"toolbelt",
|
|
"lodash",
|
|
"underscore"
|
|
]
|
|
}
|