-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.39 KB
/
package.json
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
89
90
91
{
"name": "create-tgen",
"version": "0.3.1",
"description": "A CLI tool to quickly scaffold new projects using customizable templates.",
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"author": {
"name": "Matías Castañeda",
"email": "[email protected]",
"url": "https://matcastaneda.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/matcastaneda/create-tgen.git",
"directory": "create-tgen"
},
"homepage": "https://github.com/matcastaneda/create-tgen#readme",
"bugs": "https://github.com/matcastaneda/create-tgen/issues",
"files": [
"dist"
],
"keywords": [
"next.js",
"react",
"vite",
"template",
"generator"
],
"type": "module",
"bin": {
"create-tgen": "dist/index.js"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"dev": "tsup --watch",
"prebuild": "rimraf dist",
"build": "tsup",
"start": "node dist/index.js",
"lint": "pnpm run lint:format && pnpm run lint:typecheck",
"lint:typecheck": "tsc --noEmit",
"lint:check": "prettier --check \"**/*.ts\" --cache",
"lint:format": "prettier --write \"**/*.ts\" --cache",
"prepare": "husky",
"pub:changeset": "changeset",
"pub:release": "pnpm run build && pnpm publish --access public"
},
"dependencies": {
"commander": "12.1.0",
"execa": "9.5.1",
"fast-glob": "3.3.2",
"ora": "8.1.1",
"picocolors": "1.1.1",
"prompts": "2.4.2",
"type-fest": "4.27.0",
"validate-npm-package-name": "6.0.0",
"zod": "3.23.8"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@microsoft/api-extractor": "7.47.12",
"@types/node": "22.9.1",
"@types/prompts": "2.4.9",
"@types/validate-npm-package-name": "4.0.2",
"husky": "9.1.7",
"prettier": "3.3.3",
"pretty-quick": "4.0.0",
"rimraf": "6.0.1",
"tsup": "8.3.5",
"typescript": "5.6.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "22.11.0"
}
}