-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.01 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.01 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
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
{
"name": "@modulify/git-toolkit",
"type": "module",
"version": "0.0.2",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.cjs",
"default": "./dist/*.mjs"
},
"./dist/*": "./dist/*",
"./types/*": "./types/*"
},
"files": [
"dist",
"types",
"LICENSE.md",
"README.md"
],
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"git": [
"./dist/git.d.ts"
],
"shell": [
"./dist/shell.d.ts"
],
"stream": [
"./dist/stream.d.ts"
]
}
},
"peerDependencies": {
"@types/node": ">=20"
},
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
},
"packageManager": "yarn@4.6.0",
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/node": "^20.17.19",
"@vitest/coverage-istanbul": "^3.0.7",
"@vitest/ui": "^3.0.7",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0",
"vite": "^6.3.4",
"vite-plugin-dts": "^4.5.1",
"vitest": "^3.0.7"
},
"scripts": {
"build": "vite build",
"eslint": "eslint src tests types",
"test": "vitest --run",
"test:coverage": "vitest run --coverage",
"test:coverage:html": "vitest run --coverage --reporter=html --outputFile.html=./reports/html/report.html"
},
"author": {
"name": "modulify",
"email": "https://github.com/modulify"
},
"contributors": [
{
"name": "Zaitsev Kirill",
"email": "zaytsev.cmath10@gmail.com"
},
{
"name": "conventional-changelog team",
"url": "https://github.com/conventional-changelog"
}
],
"keywords": [
"git"
],
"publishConfig": {
"access": "public"
}
}