-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.71 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.71 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
{
"private": true,
"name": "tsapp-template",
"version": "1.4.0",
"description": "Template para bibliotecas TypeScript: commits semânticos, documentação com TypeDoc, CI/CD com GitHub Actions e publicação automática no npm — pré-configurado com Husky, Vitest e Conventional Changelog.",
"author": "Heliomar P. Marques",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"homepage": "https://github.com/heliomarpm/tsapp-template#readme",
"bugs": {
"url": "https://github.com/heliomarpm/tsapp-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heliomarpm/tsapp-template.git"
},
"keywords": [
"tsapp",
"typescript",
"typescript-application",
"typescript-boilerplate",
"typescript-template",
"ts-application",
"ts-boilerplate",
"ts-template",
"typedoc",
"semantic-release",
"github-actions",
"starter-kit",
"ci-cd"
],
"scripts": {
"check": "biome check",
"lint": "biome lint --write",
"format": "biome format --write",
"test": "vitest --no-watch --reporter=verbose",
"test:c": "vitest --no-watch --coverage",
"prepare": "husky && echo 'Hooks configurados!'",
"commit": "git-cz",
"build": "tsc -p tsconfig.prod.json",
"release:test": "semantic-release --dry-run --no-ci",
"predocs": "typedoc",
"docs": "vitepress build .docs",
"docs:dev": "npm run predocs && vitepress dev .docs"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.2",
"@semantic-release/npm": "^12.0.1",
"@vitest/coverage-v8": "^3.1.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.25.4",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"semantic-release": "^24.2.3",
"tsx": "^4.19.4",
"typedoc": "^0.28.4",
"typedoc-plugin-markdown": "^4.6.3",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.8.3",
"vitepress": "^1.6.3",
"vitest": "^3.1.3"
},
"lint-staged": {
"*.{ts,js}": [
"biome check --write ."
],
"*.{yml,json,md}": [
"biome format --write ."
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
1,
"always",
100
],
"body-max-line-length": [
1,
"always",
100
]
}
}
}