-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
{
"name": "@cuppachino/type-space",
"version": "2.1.1",
"license": "gpl-3.0",
"author": {
"name": "Cuppachino",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Cuppachino/type-space.git"
},
"description": "A collection of type utilities for TypeScript.",
"keywords": [
"typescript",
"types",
"type-utilities",
"generic-types"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"packageManager": "[email protected]",
"scripts": {
"test": "pnpm clear && pnpm tsc --noEmit --emitDeclarationOnly false && jest -c jest.config.tsd.js",
"lint": "prettier -c . -w && pnpm eslint . --fix",
"build": "tsc --build --clean && tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"package": "pnpm pack --pack-destination release",
"version-package": "changeset version && pnpm lint",
"release": "pnpm build && changeset publish",
"clear": "node -e console.clear()"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@tsd/typescript": "^5.2.2",
"@type-challenges/utils": "^0.1.1",
"@types/eslint": "^8.44.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jsdoc": "^40.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.6.4",
"jest-runner-tsd": "^5.0.0",
"prettier": "2.8.6",
"tsc-alias": "^1.8.7",
"tsd-lite": "^0.7.0",
"typescript": "5.2.2"
}
}