-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) Β· 2.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
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
{
"name": "@boykaframework/boyka-cli",
"version": "0.11.1",
"description": "π§π»βπ» Command line assistant for Boyka Framework",
"main": "./dist/index.js",
"type": "module",
"bin": {
"boyka": "./dist/index.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint --fix src/**/*.ts",
"format": "prettier --check src/**/*.ts",
"format:fix": "prettier --write src/**/*.ts",
"dev": "tsc -w",
"clean": "rm -rf dist",
"build": "pnpm clean && tsc",
"release": "release-it --ci",
"release.patch": "pnpm release patch",
"release.minor": "pnpm release minor",
"release.major": "pnpm release major",
"prepare": "husky"
},
"keywords": [
"typescript",
"cli",
"npmtool"
],
"author": "Wasiq Bhamla",
"license": "MIT",
"bugs": {
"url": "https://github.com/BoykaFramework/boyka-cli/issues"
},
"funding": {
"type": "GitHub Sponsor",
"url": "https://github.com/sponsors/BoykaFramework"
},
"repository": {
"url": "https://github.com/BoykaFramework/boyka-cli"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@release-it-plugins/lerna-changelog": "^7.0.0",
"@stylistic/eslint-plugin-js": "^2.12.1",
"@stylistic/eslint-plugin-ts": "^2.12.1",
"@tsconfig/node18": "^18.2.4",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lerna-changelog": "^2.2.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"release-it": "^17.11.0",
"release-it-pnpm": "^4.6.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"dependencies": {
"@inquirer/confirm": "^5.1.1",
"@inquirer/input": "^4.1.1",
"@inquirer/select": "^4.0.4",
"chalk": "^5.4.1",
"figlet": "^1.8.0",
"gradient-string": "^3.0.0",
"liquidjs": "^10.20.1",
"nanospinner": "^1.2.2",
"yargs": "^17.7.2"
},
"lint-staged": {
"**/*.ts": [
"pnpm lint:fix",
"pnpm lint",
"pnpm format:fix",
"pnpm format"
]
},
"packageManager": "[email protected]"
}