-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.5 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
{
"name": "use-git",
"displayName": "useGit",
"description": "A robust, promise-based Git utility for Node.js",
"version": "1.0.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/teneplaysofficial/use-git"
},
"homepage": "https://teneplaysofficial.github.io/use-git",
"funding": "https://github.com/sponsors/teneplaysofficial",
"keywords": [
"git",
"promise-based"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"files": [
"dist"
],
"packageManager": "pnpm@10.33.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"prepare": "husky",
"release": "release-hub",
"build": "tsdown",
"doc": "typedoc",
"gen": "pnpm exports",
"exports": "node scripts/exports.js",
"exports:check": "node scripts/exports.js --check",
"typecheck": "tsc --noEmit",
"fix": "biome check --write",
"lint": "biome check"
},
"lint-staged": {
"*.{ts,js,json}": [
"biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/node": "^24.10.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"release-hub": "^1.0.0-beta.0",
"ts-morph": "^28.0.0",
"tsdown": "^0.21.0",
"typedoc": "^0.28.15",
"typescript": "^6.0.0"
}
}