-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
160 lines (160 loc) · 5.32 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "fast-maker",
"version": "4.0.0",
"description": "create route file on specific directory",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "vitest --run --coverage",
"test-coverage": "vitest --run --coverage",
"test:report": "http-server -p 9991 ./coverage/lcov-report",
"dev": "USE_INIT_CWD=true ts-node ./src/cli.ts",
"clean": "rimraf dist artifact",
"ctix": "ctix build --config .configs/.ctirc",
"ctix-rm": "ctix remove --config .configs/.ctirc --force-yes --remove-backup",
"dts": "tsc -p tsconfig.dts.json",
"dts-alias": "tsc-alias -p tsconfig.dts.json",
"dts-gen": "rollup --config ./.configs/rollup.config.mjs",
"dts-pack": "run-s dts dts-alias dts-gen dts-rm",
"dts-rm": "rimraf dist/types/origin",
"esbuild-lib-cjs": "FORMAT=cjs node .configs/esbuild.mjs",
"esbuild-lib-esm": "FORMAT=esm node .configs/esbuild.mjs",
"bundle-lib-pack": "run-p esbuild-lib-cjs esbuild-lib-esm dts-pack",
"bundle-lib": "run-s ctix bundle-lib-pack ctix-rm",
"bundle-cli": "FORMAT=cjs node .configs/esbuild.cli.mjs",
"bundle": "run-s clean bundle-cli bundle-lib",
"build": "pnpm run clean && tsc --incremental --project tsconfig.prod.json",
"lint": "eslint --cache .",
"lint-staged": "lint-staged",
"lnb": "concurrently \"npm run lint\" \"npm run build\"",
"prettier": "prettier --write src/**/*.ts",
"pub": "pnpm run bundle && cross-env RELEASE_MODE=true pnpm publish --registry http://localhost:8901 --force",
"unpub": "pnpm unpublish $npm_package_name@$npm_package_version --registry http://localhost:8901",
"pub:prod": "pnpm run bundle && cross-env RELEASE_MODE=true pnpm publish --access=public",
"dd": "deps-diff md -d dev -d prod -d peer --title-list-type '*' --deps-list-type '*' --content-list-type '*'",
"debug": "node -r ts-node/register --inspect --nolazy src/cli.ts",
"debug-brk": "node -r ts-node/register --inspect-brk --nolazy src/cli.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imjuni/fast-maker.git"
},
"bin": {
"fast-maker": "dist/cjs/cli.cjs"
},
"private": false,
"author": "ByungJoon Lee",
"license": "MIT",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.,js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": {
"default": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
},
"import": {
"default": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts"
}
}
},
"files": [
"dist",
"templates"
],
"bugs": {
"url": "https://github.com/imjuni/fast-maker/issues"
},
"homepage": "https://github.com/imjuni/fast-maker#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@tsconfig/node18": "^18.2.2",
"@types/cli-progress": "^3.11.0",
"@types/inquirer": "^9.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.15.3",
"@types/url-join": "^4.0.0",
"@types/uuid": "^8.3.0",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"@vitest/coverage-v8": "^1.1.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"ctix": "^2.4.0",
"deps-diff": "^1.0.2",
"esbuild": "^0.19.10",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.1.2",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"inquirer-autocomplete-prompt": "^2.0.0",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier-eslint": "^16.2.0",
"read-pkg": "^5.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.1.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.1.2",
"tslib": "^2.5.0",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.1.0"
},
"dependencies": {
"@maeum/cli-logo": "^1.0.0",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.3",
"comment-parser": "^1.4.1",
"consola": "^3.2.3",
"dayjs": "^1.11.7",
"eta": "^3.2.0",
"fast-copy": "^3.0.1",
"fast-glob": "^3.2.12",
"fast-safe-stringify": "^2.1.1",
"fastify": "^4.15.0",
"filenamify": "5.1.1",
"find-up": "^5.0.0",
"fuse.js": "^7.0.0",
"glob": "^10.3.10",
"inquirer": "^8.0.0",
"json-schema": "^0.4.0",
"jsonc-parser": "^3.2.0",
"mathjs": "^12.2.1",
"minimist": "^1.2.8",
"my-easy-fp": "^0.22.0",
"my-node-fp": "^0.10.3",
"my-only-either": "^1.3.0",
"ora": "^5.4.1",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"ts-morph": "^21.0.1",
"type-fest": "^4.9.0",
"url-join": "^4.0.1",
"uuid": "^9.0.0",
"yargs": "^17.7.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"cross-env NODE_ENV=production eslint --cache"
],
"*.{js,jsx,ts,tsx},*.json,.{eslintrc.cjs,prettierrc}": [
"cross-env NODE_ENV=production prettier --ignore-path .eslintignore --parser json --write"
]
}
}