-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.65 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
{
"name": "@ralphschuler/ts-libs",
"description": "A collection of useful TypeScript libraries",
"version": "0.0.0",
"author": {
"name": "Ralph Schuler",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/ralphschuler/ts-libs/issues"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@mxssfd/typedoc-theme": "^1.1.3",
"@types/is-ci": "^3",
"@types/license-checker": "^25",
"fixpack": "^4.0.0",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"pkg-to-readme": "^2.0.0",
"tsx": "^4.1.4",
"typedoc": "^0.25.3",
"typedoc-github-wiki-theme": "^1.1.0",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-mdn-links": "^3.1.5",
"typedoc-plugin-missing-exports": "^2.1.0",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typescript": "^5.3.3"
},
"homepage": "https://ralphschuler.github.io/ts-libs/",
"keywords": [
"helpers",
"library",
"tools",
"typescript",
"utils"
],
"license": "MIT",
"main": "",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"build": "yarn workspaces foreach -Apt run build",
"clean": "yarn workspaces foreach -Apt run clean",
"docs:all": "yarn docs:build; yarn docs:bundle:markdown && yarn docs:bundle:html",
"docs:build": "yarn workspaces foreach -Apt run docs",
"docs:bundle:html": "typedoc --out docs/html --plugin @mxssfd/typedoc-theme --theme my-theme --plugin typedoc-plugin-markdown --readme ./README.md --entryPointStrategy merge \"./**/docs/*.json\"",
"docs:bundle:markdown": "typedoc --plugin typedoc-plugin-markdown --plugin typedoc-github-wiki-theme --out docs/markdown --readme ./README.md --entryPointStrategy merge \"./**/docs/*.json\"",
"fixpack": "fixpack && yarn workspaces foreach -Apt run fixpack",
"format": "yarn workspaces foreach -Apt run format",
"format:fix": "yarn workspaces foreach -Apt run format:fix",
"husky:install": "is-ci || husky install",
"license:report": "yarn workspaces foreach -Apt run license:report",
"lint": "yarn workspaces foreach -Apt run lint",
"lint:fix": "yarn workspaces foreach -Apt run lint:fix",
"lint:report": "yarn workspaces foreach -Apt run lint:report",
"prepare": "yarn husky:install && yarn workspaces foreach -Apt run prepare",
"prepublish": "yarn build",
"publish": "yarn workspaces foreach -Apt run publish",
"readme": "yarn readme:build && yarn workspaces foreach -Apt run readme:build",
"readme:build": "pkg-to-readme -f -t ./_readme.md",
"test": "yarn workspaces foreach -Apt run test"
},
"workspaces": [
"packages/*"
]
}