-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 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
{
"name": "@ckpack/git-dl",
"type": "module",
"version": "1.3.0",
"private": false,
"packageManager": "pnpm@10.6.2",
"description": "Command line tool for downloading specific content from a GitHub repository.",
"author": "ckvv",
"license": "ISC",
"repository": "https://github.com/ckpack/git-dl",
"keywords": [
"git",
"github",
"git-download",
"github-download"
],
"main": "./bin/index.js",
"module": "./bin/index.js",
"bin": {
"git-dl": "./bin/index.js"
},
"files": [
"bin"
],
"scripts": {
"dev": "node --import=tsx src/index.ts",
"build": "tsc",
"lint": "eslint --fix",
"publish:npm": "npm run build && npm publish --registry https://registry.npmjs.org/ --access public"
},
"dependencies": {
"commander": "^13.1.0",
"minimatch": "10.0.1",
"progress": "^2.0.3"
},
"devDependencies": {
"@antfu/eslint-config": "^4.10.1",
"@types/node": "^22.13.10",
"eslint": "^9.22.0",
"lint-staged": "^15.5.0",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx tsx scripts/verify-commit.ts"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,tsx,jsx,vue,md}": [
"eslint --fix"
]
}
}