-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 981 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 981 Bytes
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
{
"name": "@techymt/create-module",
"version": "1.0.16",
"description": "A package that helps in creating modules for a clean TypeScript template",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"create-module": "dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepublishOnly": "npm run build",
"dev": "ts-node src/index.ts"
},
"author": "TechyMT",
"repository": {
"type": "git",
"url": "https://github.com/TechyMT/create-module"
},
"license": "ISC",
"dependencies": {
"@inquirer/prompts": "^5.5.0",
"@types/gradient-string": "^1.1.6",
"figlet": "^1.7.0",
"gradient-string": "^2.0.2",
"node-fetch": "^2.6.1",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/node": "^18.11.0",
"@types/node-fetch": "^2.6.2",
"ts-node": "^10.9.2"
}
}