-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.12 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.12 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
{
"name": "tpull",
"version": "1.2.0",
"description": "CLI to pull a GitHub template with variable replacement.",
"main": "src/index.js",
"type": "module",
"bin": {
"tpull": "bin/tpull.js"
},
"scripts": {
"start": "node bin/tpull.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=20.12.0"
},
"author": "sheldonix",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sheldonix/tpull.git"
},
"bugs": {
"url": "https://github.com/sheldonix/tpull/issues"
},
"homepage": "https://github.com/sheldonix/tpull",
"keywords": [
"cli",
"github",
"template",
"scaffold",
"generator",
"tool",
"shell",
"console",
"terminal",
"command-line",
"node-cli"
],
"files": [
"bin/",
"src/",
"schema.json"
],
"exports": {
".": "./src/index.js",
"./schema.json": "./schema.json"
},
"packageManager": "pnpm@10.26.1",
"dependencies": {
"commander": "^14.0.2",
"inquirer": "^13.1.0",
"tar": "^7.5.2",
"yaml": "^2.8.2",
"zod": "^4.2.1"
}
}