forked from drivenets/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 719 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 719 Bytes
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
{
"name": "@drivenets/commitlint-plugin-design-system",
"version": "0.0.0",
"private": true,
"main": "./src/index.ts",
"types": "./src/index.ts",
"type": "module",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"require": "./src/index.ts"
}
},
"repository": {
"url": "https://github.com/drivenets/design-system",
"directory": "/packages/commitlint-plugin"
},
"scripts": {
"lint": "eslint --max-warnings=0 .",
"typecheck": "tsgo"
},
"peerDependencies": {
"@commitlint/lint": "^20.2.0",
"@commitlint/types": "^20.2.0"
},
"devDependencies": {
"@typescript/native-preview": "7.0.0-dev.20260304.1",
"eslint": "^10.0.1",
"typescript": "6.0.1-rc"
}
}