generated from kubrickcode/Template-Repository
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.15 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.15 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
{
"name": "baedal",
"version": "1.3.1",
"description": "A TypeScript-based CLI tool and npm library for downloading files/folders from GitHub repositories",
"keywords": [
"git",
"download",
"cli",
"github",
"degit",
"repository"
],
"license": "MIT",
"author": "KubrickCode",
"repository": {
"type": "git",
"url": "https://github.com/KubrickCode/baedal.git"
},
"bugs": {
"url": "https://github.com/KubrickCode/baedal/issues"
},
"homepage": "https://github.com/KubrickCode/baedal#readme",
"type": "module",
"bin": {
"baedal": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup",
"lint": "eslint \"src/**/*.ts\"",
"prepare": "husky",
"prepublishOnly": "pnpm build",
"test": "vitest run"
},
"dependencies": {
"@octokit/rest": "22.0.1",
"commander": "14.0.1",
"consola": "3.4.2",
"es-toolkit": "1.42.0",
"globby": "16.0.0",
"js-yaml": "4.1.1",
"ky": "1.14.0",
"micromatch": "4.0.8",
"tar": "7.5.2",
"ts-custom-error": "3.3.1",
"zod": "4.1.12"
},
"devDependencies": {
"@eslint/js": "9.39.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.1",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.2",
"@semantic-release/npm": "13.1.2",
"@semantic-release/release-notes-generator": "14.0.1",
"@types/js-yaml": "4.0.9",
"@types/micromatch": "4.0.10",
"@types/node": "24.7.1",
"@types/tar": "6.1.13",
"conventional-changelog-conventionalcommits": "9.1.0",
"eslint": "9.39.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-perfectionist": "4.15.1",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"prettier": "3.6.2",
"semantic-release": "25.0.2",
"tsup": "8.3.5",
"typescript": "5.9.3",
"typescript-eslint": "8.48.1",
"vitest": "4.0.15"
}
}