-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
102 lines (102 loc) · 3.29 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "typedoc-json-parser",
"version": "10.2.0",
"description": "A package to parse TypeDoc JSON output",
"author": "Hezekiah Hendry <[email protected]>",
"license": "MIT",
"type": "module",
"imports": {
"#bin/commands/*": "./dist/bin/commands/*.js",
"#bin/lib/*": "./dist/bin/lib/*.js",
"#bin/lib/types": "./dist/bin/lib/types/index.js",
"#bin/lib/types/version": "./dist/bin/lib/types/Version/index.js",
"#lib/structures/*": "./dist/lib/structures/*.js",
"#lib/structures/class-parser": "./dist/lib/structures/class-parser/index.js",
"#lib/structures/enum-parser": "./dist/lib/structures/enum-parser/index.js",
"#lib/structures/interface-parser": "./dist/lib/structures/interface-parser/index.js",
"#lib/structures/misc": "./dist/lib/structures/misc/index.js",
"#lib/structures/type-parsers": "./dist/lib/structures/type-parsers/index.js",
"#lib/types": "./dist/lib/types/index.js"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"bin": "./dist/bin/index.js",
"sideEffects": false,
"scripts": {
"clean": "rimraf dist docs node_modules/.cache",
"docs": "yarn build && node dist/bin/index.js --json docs/api.json",
"lint": "eslint src --ext ts --fix",
"format": "prettier --write src/**/*.ts",
"test": "vitest run",
"test:coverage": "yarn test --coverage",
"build": "rimraf dist && tsc -b src && node scripts/versionInjector.mjs",
"update": "yarn upgrade-interactive",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"postinstall": "husky",
"prepack": "yarn build && pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"@favware/colorette-spinner": "^1.0.1",
"@sapphire/node-utilities": "^1.0.2",
"colorette": "^2.0.20",
"commander": "^12.1.0",
"js-yaml": "^4.1.0",
"tslib": "^2.6.3",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@favware/cliff-jumper": "^4.1.0",
"@favware/npm-deprecate": "^1.0.7",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/ts-config": "^5.0.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.17.9",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"gen-esm-wrapper": "^1.1.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"pinst": "^3.0.0",
"prettier": "^3.4.2",
"rimraf": "^5.0.10",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RealShadowNova/typedoc-json-parser.git"
},
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"engines": {
"node": ">=20",
"npm": ">=6"
},
"keywords": [],
"bugs": {
"url": "https://github.com/RealShadowNova/typedoc-json-parser/issues"
},
"homepage": "https://github.com/RealShadowNova/typedoc-json-parser",
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": "eslint --fix --ext ts"
}
}