-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 1.98 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
{
"name": "cliuno",
"version": "2.0.1",
"description": "CLIuno is a CLI tool to make your journey in web development less painful (it makes your life way easier).",
"author": "ru44",
"license": "MIT",
"main": "dist/app.js",
"module": "dist/app.js",
"types": "dist/app.d.ts",
"type": "module",
"bin": {
"cliuno": "dist/app.js"
},
"scripts": {
"lint": "eslint",
"lintfix": "eslint --fix",
"dev": "tsx ./src/app.ts",
"build": "tsup",
"release": "pnpm build && changeset publish",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CLIuno/core.git"
},
"keywords": [
"cliuno",
"cli",
"nodeJs",
"typescript",
"javascript",
"automation",
"all-in-one",
"all-in-1",
"all in one"
],
"bugs": {
"url": "https://github.com/CLIuno/core/issues"
},
"homepage": "https://github.com/CLIuno/core#readme",
"dependencies": {
"chalk": "^5.3.0",
"inquirer": "^9.3.7",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.16.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.1",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"lint-staged": {
"**/*.{js,ts}": [
"pnpm lintfix"
]
}
}