-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.61 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
{
"name": "@rodbe/rbx",
"version": "1.0.1",
"description": "Generator of TypeScript projects, ready to deploy. Agile, Scalable, Strict",
"keywords": [
"typescript",
"front-end"
],
"homepage": "https://github.com/rodbe-io/rbx",
"bugs": {
"url": "https://github.com/rodbe-io/rbx/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodbe-io/rbx.git"
},
"license": "MIT",
"author": "KevinRodbe",
"type": "module",
"bin": {
"rbx": "./dist/commands/rbx.js"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "pnpm run type-check",
"build": "pkgroll",
"commit": "git-cz",
"commitlint": "commitlint --edit",
"eslint:fix": "eslint --fix",
"prepare": "husky || true",
"release": "semantic-release",
"start": "pkgroll --watch",
"test:unit": "vitest run",
"type-check": "tsc --noEmit"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@inquirer/input": "^4.1.3",
"@inquirer/select": "^4.0.6",
"@rodbe/check-updates": "^1.3.0",
"@rodbe/fn-utils": "^1.5.0",
"replace-in-file": "^8.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@commitlint/format": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.17.0",
"@eslint/json": "^0.10.0",
"@rodbe/prettier-config": "^1.3.1",
"@rodbe/tsconfig": "^1.0.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "10.0.6",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.3",
"@vitest/coverage-v8": "^2.0.5",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-package-json": "^0.19.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"pkgroll": "^2.4.1",
"prettier": "^3.3.3",
"prettier-plugin-curly": "^0.3.1",
"prettier-plugin-packagejson": "^2.5.8",
"semantic-release": "20.1.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.19.0",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 18.18.2",
"npm": ">= 8.11.0",
"pnpm": ">= 9.15.2"
},
"volta": {
"node": "18.18.2"
},
"publishConfig": {
"access": "public"
},
"enginesStrict": true
}