forked from bossrodcommunity/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.17 KB
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
{
"name": "@bossrodtv/cli",
"version": "1.5.1",
"bin": "./dist/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": "https://github.com/bossrodtv/cli",
"homepage": "https://github.com/bossrodtv/cli#readme.md",
"bugs": {
"url": "https://github.com/bossrodtv/cli/issues"
},
"contributors": [
{
"name": "Rodrick Alcantara",
"url": "https://github.com/constROD"
}
],
"description": "CLI for creating new app with TypeScript, ESLint, Prettier, Commitlint, TailwindCSS and etc.",
"author": "Rodrick Alcantara <rialcantara21@gmail.com>",
"license": "MIT",
"keywords": [
"create app",
"cli",
"tailwind",
"cli",
"typescript",
"eslint",
"prettier",
"commitlint",
"next.js",
"bossrodtv"
],
"scripts": {
"dev": "ts-node -r tsconfig-paths/register ./cli/index.ts",
"clean": "rm -rf ./dist",
"build": "pnpm clean && tsup ./cli/index.ts --format cjs,esm --dts",
"release": "pnpm build && changeset publish",
"format": "prettier --write ./cli/**/*.ts{,x}",
"lint:types": "tsc",
"lint:spell": "git diff --cached --name-only | npx cspell --no-summary --no-progress --no-must-find-files --file-list stdin",
"ci:lint": "concurrently \"pnpm lint:types\" \"pnpm lint:spell\"",
"pre-commit": "concurrently \"lint-staged --allow-empty\" \"pnpm lint:spell\"",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"chalk": "4.1.2",
"clear": "^0.1.0",
"figlet": "^1.6.0",
"gradient-string": "^2.0.2",
"inquirer": "^8.2.5"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/clear": "^0.1.2",
"@types/figlet": "^1.5.6",
"@types/gradient-string": "^1.1.2",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.16.18",
"concurrently": "^8.2.0",
"cspell": "^6.31.1",
"husky": "^6.0.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
}
}