-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.91 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@knodes/typedoc-plugins",
"version": "0.23.4",
"description": "A monorepo containing all knodes-published TypeDoc plugins",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/KnodesCommunity/typedoc-plugins.git"
},
"bugs": {
"url": "https://github.com/KnodesCommunity/typedoc-plugins/issues"
},
"homepage": "https://github.com/KnodesCommunity/typedoc-plugins#readme",
"author": {
"email": "gerkin@knodes.org",
"name": "GerkinDev"
},
"keywords": [
"typedocplugin",
"documentation"
],
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "pnpm run:packages build --pretty",
"build:clean": "pnpm run:packages build:clean",
"build:watch": "pnpm run build && node ./tools/p-projects \"pnpm run build --watch --preserveWatchOutput --pretty\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"ci:test": "cross-env JEST_JUNIT_OUTPUT_NAME=junit.xml jest --config jest.config.ci.mjs --all --ci --reporters=default --reporters=jest-junit",
"ci:test:coverage": "pnpm run ci:test --collectCoverage",
"docs": "typedoc",
"exec:packages": "pnpm -r --filter=./packages/* exec ",
"format:pkg": "format-package --write \"./package.json\" \"./packages/*/package.json\"",
"lint": "eslint --ignore-path ./.eslintignore \"**/?(.)*.?([cm])[tj]s?(x)\"",
"lint:md": "markdownlint .",
"pack": "pnpm exec:packages pnpm pack",
"precommit": "pnpm run tools:sync-proto --check && pnpm run lint --cache && pnpm run lint:md && pnpm run build && pnpm run test --onlyChanged && pnpm run docs",
"prepare": "husky",
"prepare:husky": "run-script-os",
"prepare:husky:default": "[ -d ./node_modules/husky ] && husky init || true",
"prepare:husky:windows": "if exist './node_modules/husky' { husky init }",
"release": "run-script-os",
"release:default": "./tools/release.sh",
"release:windows": "echo \"Unsupported platform for release. Run this command only from an UNIX-like environment.\"",
"run:packages": "pnpm -r --filter=./packages/* run ",
"test": "jest",
"test:coverage": "jest --config ./jest.config.coverage.mjs",
"tools:sync-proto": "node tools/sync-proto.mjs"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"typedoc": "^0.23.0"
},
"devDependencies": {
"husky": "^9.1.4",
"jest": "^29.0.0",
"run-script-os": "^1.1.6",
"cross-env": "^7.0.3",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"markdownlint-cli": "^0.41.0",
"typescript": "~5.5.0",
"typedoc": "^0.23.28",
"conventional-changelog-cli": "^3.0.0",
"@knodes/typedoc-plugintestbed": "workspace:*",
"@knodes/typedoc-plugin-pages": "workspace:*",
"@knodes/typedoc-plugin-code-blocks": "workspace:*",
"@knodes/typedoc-pluginutils": "workspace:*"
}
}