-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 903 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
{
"name": "hidocs",
"version": "1.0.6",
"description": "Can log \"hello world\" and \"goodbye world\" to the console!",
"main": "build-with-tsc/index.js",
"types": "build-with-tsc/index.d.ts",
"license": "MIT",
"files": [
"/build-with-tsc"
],
"scripts": {
"build": "tsc",
"build2": "tsup",
"doc": "npx typedoc"
},
"dependencies": {
"typescript": "^4.8.4"
},
"devDependencies": {
"tsup": "6.3.0",
"typedoc": "0.23.18",
"typedoc-plugin-markdown": "3.13.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tgmarinho/poc-ts-doc.git"
},
"keywords": [
"js",
"tdd",
"library"
],
"author": "Thiago Marinho <tgmarinho@gmail.com> (https://tgmarinho.com)",
"bugs": {
"url": "https://github.com/tgmarinho/poc-ts-doc.git/issues"
},
"homepage": "https://github.com/tgmarinho/poc-ts-doc.git#readme"
}