-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
141 lines (141 loc) · 4.53 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
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@expressots/boost-ts",
"version": "1.3.0",
"description": "Expressots: Boost is a collection of libraries for the TypeScript programming language designed to enhance its capabilities across various domains. (@boost-ts)",
"main": "./lib/cjs/index.js",
"types": "./lib/cjs/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"files": [
"lib/**/*"
],
"license": "MIT",
"keywords": [
"pattern-matching",
"text-utils",
"expressots"
],
"repository": {
"type": "git",
"url": "git+https://github.com/expressots/boost-ts.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Richard Zampieri",
"scripts": {
"prepare": "husky",
"clean": "node scripts/rm.js lib",
"copy": "node scripts/copy.js package.json README.md CHANGELOG.md lib",
"build": "npm run clean && npm run build:cjs && npm run copy",
"build:cjs": "tsc -p tsconfig.cjs.json",
"release": "release-it",
"prepublish": "npm run build && npm pack",
"publish": "npm publish --tag latest",
"test": "vitest run --reporter default",
"test:watch": "vitest run --watch",
"coverage": "vitest run --coverage",
"format": "prettier --write \"src/**/*.ts\" --cache",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix"
},
"devDependencies": {
"@swc/core": "1.3.37",
"@swc/jest": "0.2.24",
"@types/jest": "29.5.0",
"jest": "29.5.0",
"ts-node-dev": "2.0.0",
"@codecov/vite-plugin": "0.0.1-beta.6",
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.2.2",
"@expressots/core": "2.15.0",
"@release-it/conventional-changelog": "8.0.1",
"@types/express": "4.17.21",
"@types/node": "22.0.2",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"@vitest/coverage-v8": "2.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.1",
"prettier": "3.3.3",
"release-it": "17.6.0",
"typescript": "5.5.3",
"vite": "5.3.4",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.0.3"
},
"dependencies": {
"rimraf": "6.0.1"
},
"release-it": {
"git": {
"commitMessage": "chore(release): ${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "refactor",
"section": "Code Refactoring"
},
{
"type": "test",
"section": "Tests"
},
{
"type": "build",
"section": "Build System"
},
{
"type": "ci",
"section": "Continuous Integrations"
}
]
}
}
}
}
}