๐Ÿ“ฆ nrjdalal / gitpick

๐Ÿ“„ package.json ยท 76 lines
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.11.3",
  "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.4.1",
    "@types/node": "^22.15.21",
    "lint-staged": "^15.5.2",
    "prettier": "^3.5.3",
    "simple-git-hooks": "^2.13.0",
    "sort-package-json": "^3.2.1",
    "tsup": "^8.5.0",
    "typescript": "^5.8.3"
  }
}