-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "@commencis/commitlint-config",
"version": "1.1.1",
"description": "Commencis Commitlint config",
"author": "Commencis WEB Team",
"license": "Apache-2.0",
"type": "module",
"homepage": "https://github.com/Commencis/js-toolkit/tree/main/packages/commitlint-config#readme",
"bugs": {
"url": "https://github.com/Commencis/js-toolkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Commencis/js-toolkit.git",
"directory": "packages/commitlint-config"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"files": [
"dist",
"*.md",
"LICENSE"
],
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"lint:types": "tsc --noEmit"
},
"dependencies": {
"@commitlint/config-conventional": "19.6.0"
},
"devDependencies": {
"@commencis/ts-config": "workspace:*",
"@commitlint/types": "19.5.0",
"tsup": "8.3.5",
"typescript": "5.7.2"
}
}