-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
128 lines (128 loc) · 3.57 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@tsed/cli-root",
"version": "6.1.11",
"description": "CLI to bootstrap your Ts.ED project",
"private": true,
"type": "module",
"scripts": {
"postinstall": "cd docs && yarn install",
"configure": "monorepo ci configure",
"clean": "monorepo clean workspace",
"test": "vitest run",
"lint": "eslint '**/*.{ts,js}'",
"lint:fix": "eslint '**/*.{ts,js}' --fix",
"build": "monorepo build --verbose",
"build:references": "node ./tools/typescript",
"build:eslint": "node ./tools/eslint",
"build:vitest": "node ./tools/vitest/install.js",
"sync:packages": "monorepo sync packages",
"docs:serve": "yarn api:build && yarn vuepress:serve",
"docs:build": "yarn api:build && yarn vuepress:build",
"docs:publish": "monorepo publish ghpages",
"api:build": "lerna run build && tsdoc",
"vuepress:build": "rm -rf ./docs/api && cd ./docs && yarn vuepress:build",
"vuepress:serve": "vuepress dev docs",
"release": "semantic-release",
"release:dryRun": "semantic-release --dry-run",
"prepare": "is-ci || husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/tsedio/tsed-cli.git"
},
"keywords": [
"ts",
"log",
"debug",
"typescript",
"trace"
],
"author": "Romain Lenzotti",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsedio/tsed-cli/issues"
},
"homepage": "https://github.com/tsedio/tsed-cli",
"dependencies": {
"@tsed/core": ">=8.3.1",
"@tsed/di": ">=8.3.1",
"@tsed/logger": ">=7.0.1",
"@tsed/normalize-path": ">=8.3.1",
"@tsed/openspec": ">=8.3.1",
"@tsed/schema": ">=8.3.1",
"axios": "^1.7.7",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"consolidate": "^1.0.4",
"execa": "8.0.1",
"figures": "^6.1.0",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"handlebars-helpers": "^0.10.0",
"inquirer": "^9.3.7",
"inquirer-autocomplete-prompt": "^3.0.1",
"js-yaml": "^4.1.0",
"lerna": "^8.1.8",
"listr2": "^8.2.4",
"read-pkg-up": "^11.0.0",
"registry-url": "^6.0.1",
"rxjs": "^7.8.1",
"semver": "7.6.3",
"split": "^1.0.1",
"tslib": "^2.7.0",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@swc/core": "1.7.26",
"@swc/helpers": "0.5.13",
"@tsed/markdown-it-symbols": "3.20.8",
"@tsed/monorepo-utils": "2.3.10",
"@tsed/ts-doc": "^4.1.0",
"@types/node": "22.7.4",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"@vitest/coverage-v8": "^2.1.1",
"concurrently": "9.0.1",
"cross-env": "7.0.3",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-workspaces": "0.10.1",
"gflow": "^5.1.4",
"husky": "9.1.6",
"is-ci": "3.0.1",
"lint-staged": "15.2.10",
"markdown-it": "14.1.0",
"prettier": "3.3.3",
"semantic-release": "24.1.2",
"semantic-release-slack-bot": "4.0.2",
"ts-node": "^10.9.2",
"typescript": "5.6.2",
"unplugin-swc": "^1.5.1",
"vitest": "2.1.1"
},
"directories": {
"packages": "packages",
"test": "test"
},
"workspaces": {
"packages": [
"packages/*",
"tools/*"
],
"nohoist": [
"read-pkg-up"
]
},
"monorepo": {
"productionBranch": "master",
"developBranch": "master",
"npmAccess": "public",
"ghpages": []
},
"packageManager": "[email protected]"
}