-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.1 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.1 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
{
"name": "@comitify/shared",
"private": false,
"version": "0.2.4",
"description": "Shared elements for comitify tool",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "bun run build.mjs"
},
"files": [
"dist"
],
"exports": {
".": "./dist/index.js",
"./types": "./dist/types/index.js",
"./utils": "./dist/utils/index.js",
"./validation": "./dist/validation/index.js"
},
"dependencies": {
"cosmiconfig": "^9.0.0",
"joi": "17.13.3"
},
"devDependencies": {
"@types/bun": "1.1.6",
"bun-plugin-dts": "0.2.3",
"semver": "^7.6.3",
"typescript": "5.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/Commitify/shared.git"
},
"keywords": [
"comitify",
"commit",
"git",
"cli",
"tool"
],
"author": "Comitify <comitify.dev@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Commitify/shared/issues"
},
"homepage": "https://github.com/Commitify/shared",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}