-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 980 Bytes
/
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
{
"name": "extract-typescript-types",
"version": "1.2.0",
"description": "Generate extract information from TypeScript Types.",
"keywords": [
"typescript"
],
"repository": "https://github.com/xiaobebe/extract-typescript-types.git",
"author": "yee.wang",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"license": "MIT",
"files": [
"dist/*"
],
"precommit": [
"test",
"clean",
"build"
],
"scripts": {
"dev": "father dev",
"build": "father build",
"prepublishOnly": "npm run build",
"test": "vitest run"
},
"peerDependencies": {
"typescript": "*"
},
"devDependencies": {
"@babel/core": "^7.22.6",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/node": "^20.3.3",
"father": "^4.3.7",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"react": "^16.14.0",
"typescript": "^5.1.6",
"vitest": "^0.21.1"
}
}