-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "@blazzi/commitlint-config",
"version": "0.1.0",
"description": "Blazzi Commitlint config",
"keywords": [
"config",
"commitlint",
"commit-message"
],
"author": "Mehmetcan YILMAZ",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/ymehmetcan/blazzi-toolkit/tree/main/packages/commitlint-config#readme",
"bugs": {
"url": "https://github.com/ymehmetcan/blazzi-toolkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ymehmetcan/blazzi-toolkit.git",
"directory": "packages/commitlint-config"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint:types": "tsc --noEmit"
},
"dependencies": {
"@commitlint/config-conventional": "19.5.0"
},
"devDependencies": {
"@blazzi/ts-config": "workspace:*",
"@commitlint/types": "19.5.0",
"tsup": "8.3.5",
"typescript": "5.6.3"
}
}