-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.45 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
{
"name": "type-toolkit",
"version": "1.0.0-alpha.5",
"description": "A TypeScript type utility library developed in the TypeZen language",
"main": "./index.d.ts",
"types": "./index.d.ts",
"files": [
"dist",
"index.d.ts",
"README.md",
"README.zh.md"
],
"keywords": [
"typescript",
"type-tools",
"type-helper",
"type-toolkit",
"type toolkit",
"typezen"
],
"author": "xlboy",
"license": "MIT",
"homepage": "https://github.com/xlboy/type-toolkit",
"repository": {
"type": "git",
"url": "git+https://github.com/xlboy/type-toolkit.git"
},
"bugs": {
"url": "https://github.com/xlboy/type-toolkit/issues"
},
"engines": {
"node": ">=16.14"
},
"packageManager": ">[email protected]",
"scripts": {
"clean": "rimraf **/node_modules",
"build": "tsx scripts/build",
"generate-docs": "tsx scripts/generate-docs"
},
"devDependencies": {
"@type-zen/cli": "^0.2.0",
"@type-zen/core": "0.0.1-alpha.18",
"@type-zen/ts-plugin": "^0.1.0",
"@types/fs-extra": "^11.0.1",
"@types/lodash-es": "^4.17.7",
"colorette": "^2.0.19",
"consola": "^2.15.3",
"fast-glob": "^3.2.12",
"fs-extra": "^11.1.1",
"jiti": "^1.18.2",
"lodash-es": "^4.17.21",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"tsx": "^3.12.6",
"typescript": "^5.1.3"
},
"peerDependencies": {
"typescript": "> 4.9"
},
"dependencies": {
"@type-zen/preset-type": "^0.2.0"
}
}