forked from typedoc2md/typedoc-plugin-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.02 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.02 KB
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
{
"private": true,
"workspaces": [
"packages/typedoc-plugin-markdown",
"packages/typedoc-plugin-remark",
"packages/typedoc-plugin-frontmatter",
"packages/typedoc-github-wiki-theme",
"packages/typedoc-gitlab-wiki-theme",
"packages/typedoc-vitepress-theme",
"packages/typedoc-docusaurus-theme",
"packages/docusaurus-plugin-typedoc",
"devtools/packages/*"
],
"scripts": {
"docs": "ts-node ./devtools/scripts/generate-readmes && node ./devtools/scripts/tocs.mjs",
"devdocs": "npm run build --workspace typedoc-plugin-markdown && typedoc",
"build-all": "npm run build --workspaces --if-present",
"test-all": "npm run test --workspaces --if-present",
"test-and-update-all": "npm run test:update --workspaces --if-present",
"lint-all": "npm run lint --workspaces --if-present",
"prerelease": "npm run build-all",
"release": "npx changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@devtools/helpers": "workspace:*",
"@devtools/prebuild-options": "workspace:*",
"@devtools/testing": "workspace:*",
"@eslint/js": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^25.3.3",
"consola": "^3.4.2",
"copyfiles": "^2.4.1",
"eslint": "^10.0.2",
"fs-extra": "^11.3.4",
"glob": "^13.0.6",
"husky": "^9.1.7",
"jest-diff": "^30.2.0",
"markdownlint": "0.40.0",
"mocha": "^11.7.5",
"p-limit": "^7.3.0",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"remark": "^15.0.1",
"remark-github": "^12.0.0",
"remark-insert-headings": "^0.0.0",
"remark-mdx": "^3.1.1",
"remark-toc": "^9.0.0",
"to-vfile": "^8.0.0",
"ts-json-schema-generator": "2.4.0",
"ts-morph": "^27.0.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typedoc": "0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}