-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.18 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.18 KB
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
{
"name": "advanced-ts-utility-types",
"author": "chihyun-lab",
"homepage": "https://github.com/chihyun-lab/utility-types",
"version": "1.0.7",
"description": "Advanced TypeScript utility types for practical use",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"typescript",
"utility-types",
"types",
"generics",
"advanced"
],
"bugs": {
"url": "https://github.com/chihyun-lab/utility-types/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chihyun-lab/utility-types.git"
},
"license": "MIT",
"type": "commonjs",
"files": [
"dist/**/*",
"README.md",
"README.ko.md",
"README.zh.md",
"README.ja.md"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^24.2.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.2",
"typescript": "^5.9.2"
},
"dependencies": {
"tslib": "^2.8.1"
}
}