forked from ts-essentials/ts-essentials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "ts-essentials",
"description": "All essential TypeScript types in one place",
"keywords": [
"typescript",
"types",
"essentials",
"utils",
"toolbox",
"toolbelt",
"lodash",
"underscore"
],
"version": "9.3.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:krzkaczor/ts-essentials.git",
"author": "Krzysztof Kaczor <[email protected]>",
"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 --noEmit",
"test:fix": "prettier --write **/*.ts && tsc --noEmit",
"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"
},
"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"
}
}