-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.16 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
{
"name": "ts-document",
"version": "0.8.0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepublishOnly": "npm run test && npm run tsc",
"tsc": "rm -rf lib/ && tsc",
"tsc:watch": "tsc -w",
"lint": "eslint src/ --fix --ext .ts,.tsx",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PengJiyuan/ts-document.git"
},
"keywords": [
"docgen",
"react",
"typescript"
],
"author": "PengJiyuan",
"license": "MIT",
"bugs": {
"url": "https://github.com/PengJiyuan/ts-document/issues"
},
"homepage": "https://github.com/PengJiyuan/ts-document#readme",
"peerDependencies": {
"typescript": ">= 4.3.x"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^15.12.5",
"@types/react": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"jest": "^27.0.6",
"prettier": "^2.0.5",
"react": "^17.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"ts-morph": "^11.0.0"
},
"files": [
"lib"
]
}