-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.04 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "genzo",
"version": "1.0.8",
"author": "FatehAK",
"files": [
"dist/"
],
"license": "MIT",
"description": "Rapidly scaffold your projects for development with custom templates",
"repository": {
"type": "git",
"url": "https://github.com/FatehAK/genzo-cli"
},
"module": "./dist/cli.mjs",
"exports": {
".": {
"import": "./dist/cli.mjs"
},
"./package.json": "./package.json"
},
"bin": {
"gen": "./dist/cli.mjs",
"genzo": "./dist/cli.mjs"
},
"bugs": {
"url": "https://github.com/FatehAK/genzo-cli/issues"
},
"homepage": "https://github.com/FatehAK/genzo-cli#readme",
"keywords": [
"development",
"dev",
"build",
"tool",
"cli",
"scaffold",
"scaffolding",
"generate",
"generator",
"genzo-cli",
"genzo",
"boilerplate",
"templating",
"template",
"bootstrap"
],
"scripts": {
"start": "vite",
"build": "vite build",
"build:watch": "vite build --watch",
"release": "release-it",
"tarball": "rimraf tar && pnpm pack --pack-destination ./tar",
"analyze": "open ./reports/build-stats.html",
"clean": "pnpm rimraf tar reports dist node_modules/.vite node_modules/.cache",
"lint": "concurrently -g -n \"prettier,eslint\" -c \"bgGreen.bold,bgBlue.bold\" \"pnpm prettier-check\" \"pnpm eslint-check\"",
"lint:fix": "pnpm eslint-fix && pnpm prettier-fix",
"prettier-check": "prettier --loglevel warn --cache --cache-strategy content --cache-location ./node_modules/.cache/.prettiercache --check .",
"prettier-fix": "prettier --loglevel warn --cache --cache-strategy content --cache-location ./node_modules/.cache/.prettiercache --write .",
"eslint-check": "eslint --max-warnings=25 --format=pretty --cache --cache-strategy content --cache-location ./node_modules/.cache/.eslintcache '{**/*,*}.js'",
"eslint-fix": "pnpm eslint-check --fix",
"prepare": "husky install",
"lint-staged": "lint-staged",
"cz": "czg"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"execa": "^7.2.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.3.7",
"inquirer-search-list": "^1.2.6",
"minimatch": "^9.0.5",
"minimist": "^1.2.8",
"nanospinner": "^1.2.2",
"node-fetch": "^3.3.2",
"pathe": "^1.1.2"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@types/inquirer": "^9.0.7",
"concurrently": "^8.2.2",
"czg": "1.11.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-formatter-pretty": "^5.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-sonarjs": "^0.25.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"release-it": "^15.11.0",
"rimraf": "^5.0.10",
"rollup-plugin-visualizer": "^5.13.1",
"vite": "^4.5.5"
},
"engines": {
"node": ">=14"
},
"packageManager": "[email protected]",
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}