-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 971 Bytes
/
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
{
"name": "@zysam/use-template",
"version": "1.0.0",
"description": "Quick start project creator",
"author": "zysam",
"repository": "https://github.com/zysam/use-template",
"homepage": "https://github.com/zysam/use-template",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"use-template": "./dist/bin.js"
},
"scripts": {
"build": "npm run clean && tsc --project tsconfig.build.json",
"test": "tsx scripts/test.ts",
"clean:test": "rm -rf ./scripts/test-output/**",
"start": "tsx src/bin.ts",
"clean": "rm -rf dist"
},
"dependencies": {
"commander": "^12.1.0",
"debug": "^4.3.7",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"inquirer": "^8.2.6"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^8.2.6",
"@types/node": "^22.8.4",
"eslint-plugin-node": "^11.1.0",
"typescript": "^5.6.3"
}
}