-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.57 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@halvaradop/ts-utility-types",
"version": "0.16.0",
"description": "Utility types tools to enhances the productivity using typescript",
"type": "module",
"scripts": {
"dev": "tsup --watch",
"dev:web": "cd app && pnpm dev",
"build": "pnpm build:types && pnpm build:web",
"build:types": "tsup && tsup src/validate-types.ts --dts --format esm,cjs --outDir dist/utils",
"build:web": "cd app && pnpm build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest --run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "pnpm clean:dist && pnpm clean:modules",
"clean:dist": "rm -rf dist",
"clean:modules": "rm -rf node_modules",
"publish": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/halvaradop/ts-utility-types.git"
},
"keywords": [
"typescript",
"utilities",
"utility-types",
"productivity",
"development",
"interfaces"
],
"author": "Hernan Alvarado <hernanvid123@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/halvaradop/ts-utility-types/issues"
},
"homepage": "https://github.com/halvaradop/ts-utility-types#readme",
"devDependencies": {
"@types/node": "^22.5.3",
"@vitest/coverage-v8": "^2.1.6",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.1.6"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.d.ts",
"require": "./dist/index.d.ts"
},
"./validate": {
"types": "./dist/utils/validate-types.d.ts",
"import": "./dist/utils/validate-types.js",
"require": "./dist/utils/validate-types.cjs"
},
"./arrays": {
"types": "./dist/array-types.d.ts"
},
"./objects": {
"types": "./dist/object-types.d.ts"
},
"./string-mappers": {
"types": "./dist/string-mappers.d.ts"
},
"./test": {
"types": "./dist/test.d.ts"
},
"./type-guards": {
"types": "./dist/type-guards.d.ts"
},
"./types": {
"types": "./dist/types.d.ts"
},
"./utilities": {
"types": "./dist/utility-types.d.ts"
}
},
"files": [
"dist"
],
"packageManager": "pnpm@9.12.0",
"prettier": {
"semi": false,
"tabWidth": 4,
"printWidth": 130,
"trailingComma": "es5",
"overrides": [
{
"files": [
"*.yaml",
"*.yml",
"*.json",
"*.md"
],
"options": {
"tabWidth": 2
}
}
]
}
}