This repository has been archived by the owner on Jun 8, 2022. It is now read-only.
forked from dbots-pkg/ts-docgen
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 1.74 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
64
65
66
67
68
69
70
71
{
"name": "@discordjs/ts-docgen",
"version": "0.4.1",
"description": "A TypeScript-enabled docs generator",
"scripts": {
"prebuild": "npm run lint",
"build": "tsup",
"lint": "prettier --check . && eslint src --ext mjs,js,ts",
"format": "prettier --write . && eslint src --ext mjs,js,ts --fix",
"prepare": "is-ci || husky install",
"prepublishOnly": "npm run lint",
"release": "standard-version --preset angular"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"directories": {
"lib": "src"
},
"files": [
"dist"
],
"contributors": [
"Crawl <[email protected]>",
"Federico Grandi <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/discordjs/ts-docgen.git"
},
"bugs": {
"url": "https://github.com/discordjs/ts-docgen/issues"
},
"homepage": "https://github.com/discordjs/ts-docgen",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-angular": "^16.2.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"standard-version": "^9.3.2",
"tsup": "^5.12.5",
"typescript": "^4.6.3"
},
"dependencies": {
"js-yaml": "^4.1.0",
"typedoc": "^0.22.15"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"publishConfig": {
"access": "public"
}
}