forked from tsedio/logger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.59 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.59 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@tsed/logger-root",
"version": "8.0.4",
"description": "A multi channel logger written in TypeScript.",
"private": true,
"type": "module",
"scripts": {
"postinstall": "cd docs && yarn install && cd ..",
"clean": "monorepo clean workspace",
"test": "yarn test:lint && yarn test:coverage",
"test:unit": "lerna run test",
"test:ci": "lerna run test:ci",
"test:coverage": "yarn test:unit --stream",
"test:lint": "eslint '**/*.{ts,js}'",
"test:lint:fix": "yarn test:lint --fix",
"build": "monorepo build --verbose",
"build:references": "node ./tools/typescript",
"compile": "lerna run build",
"sync:packages": "monorepo sync packages",
"api:build": "rm -rf ./docs/api && tsc -b && tsdoc",
"api:build:dev": "npx -p chokidar-cli chokidar \"docs/.templates/**/*.{js,ejs}\" -c \"tsdoc\"",
"docs:install": "cd docs && yarn install && cd ..",
"docs:build": "yarn api:build && yarn vitepress:build",
"docs:serve": "yarn api:build && yarn vitepress:serve",
"docs:publish": "CI=1 monorepo publish ghpages",
"vitepress:build": "cd ./docs && yarn docs:build",
"vitepress:serve": "yarn docs:install && cd docs && yarn docs:dev",
"prettier": "prettier '**/*.{ts,js,json,md,yml,yaml}' --write",
"release": "semantic-release",
"release:dryRun": "semantic-release --dry-run",
"prepare": "is-ci || husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/tsedio/logger.git"
},
"keywords": [
"ts",
"log",
"debug",
"typescript",
"trace"
],
"author": "Romain Lenzotti",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsedio/logger/issues"
},
"homepage": "https://github.com/tsedio/logger",
"dependencies": {
"colors": "1.4.0",
"date-format": "^4.0.14",
"globby": "14.1.0",
"lerna": "8.2.3",
"nodemailer": "^6.10.1",
"semver": "^7.7.2",
"streamroller": "^3.1.5",
"tslib": "2.8.1"
},
"devDependencies": {
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@swc/core": "1.13.3",
"@swc/helpers": "0.5.17",
"@tsed/markdown-it-symbols": "3.20.9",
"@tsed/monorepo-utils": "2.3.13",
"@tsed/ts-doc": "5.0.0",
"@types/node": "20.19.9",
"@typescript-eslint/eslint-plugin": "8.38.0",
"@typescript-eslint/parser": "8.38.0",
"@vitest/coverage-v8": "3.2.4",
"barrelsby": "2.8.1",
"concurrently": "^9.2.0",
"coveralls": "^3.1.1",
"cross-env": "10.0.0",
"entities": "4.5.0",
"eslint": "9.32.0",
"eslint-config-prettier": "9.1.2",
"eslint-plugin-prettier": "5.5.3",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-vitest": "0.5.4",
"eslint-plugin-workspaces": "0.11.0",
"gflow": "^5.1.4",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"lint-staged": "^16.1.4",
"prettier": "3.6.2",
"semantic-release": "^24.2.7",
"semantic-release-slack-bot": "^4.0.2",
"ts-node": "^10.9.2",
"typescript": "5.9.2",
"unplugin-swc": "^1.5.5",
"vite": "7.0.6",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.2.4"
},
"directories": {
"packages": "packages",
"test": "test"
},
"workspaces": {
"packages": [
"packages/*",
"tools/*"
]
},
"monorepo": {
"productionBranch": "production",
"npmAccess": "public",
"ghpages": [
{
"dir": "./docs/.vitepress/dist",
"url": "https://github.com/tsedio/logger.tsed.dev.git",
"branch": "gh-pages",
"cname": "logger.tsed.dev"
}
]
},
"packageManager": "yarn@4.1.1"
}