-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "pzr",
"version": "1.1.2",
"description": "A CLI tool for generating Next.js, Express.js, and Vite React project structures",
"main": "dist/pzr/index.js",
"types": "dist/pzr/index.d.ts",
"type": "module",
"bin": {
"pzr": "./bin/pzr.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/pzr/index.js",
"dev": "node --loader ts-node/esm src/pzr/index.ts",
"lint": "eslint . --ext .ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepare": "npm run build"
},
"keywords": [
"cli",
"nextjs",
"expressjs",
"vite",
"react",
"typescript",
"javascript"
],
"author": "sujit-shrc | sujit.shrc@gmail.com",
"repository": {
"type": "git",
"url": "git+https://github.com/sujit-shrc/pzr.git"
},
"homepage": "https://github.com/sujit-shrc/pzr#readme",
"bugs": {
"url": "https://github.com/sujit-shrc/pzr/issues"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.3.0",
"fs-extra": "^10.1.0",
"inquirer": "^9.0.0",
"ora": "^6.1.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.2.1",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14.16.0"
}
}