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{
"name": "gitpick",
"version": "4.12.0",
"description": "Clone exactly what you need aka straightforward project scaffolding!",
"keywords": [
"clone",
"degit",
"directory",
"file",
"folder",
"git",
"github",
"repository",
"scaffolding",
"template",
"url"
],
"homepage": "https://github.com/nrjdalal/gitpick#readme",
"bugs": "https://github.com/nrjdalal/gitpick/issues",
"repository": "nrjdalal/gitpick",
"funding": "https://github.com/sponsors/nrjdalal",
"license": "MIT",
"author": {
"name": "Neeraj Dalal",
"email": "admin@nrjdalal.com",
"url": "https://nrjdalal.com"
},
"type": "module",
"bin": {
"degit": "./dist/index.js",
"gitpick": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepare": "npx simple-git-hooks",
"sync:external": "bash scripts/external.sh",
"test": "bash scripts/test.sh"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"package.json": "sort-package-json"
},
"prettier": {
"plugins": [
"@ianvs/prettier-plugin-sort-imports"
],
"printWidth": 100,
"semi": false
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@ianvs/prettier-plugin-sort-imports": "^4.6.2",
"@types/node": "^22.18.0",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.1",
"sort-package-json": "^3.4.0",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
}
}