-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.59 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.59 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
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
{
"name": "RBX_PROJECT_NAME",
"version": "1.0.0",
"description": "RBX_DESCRIPTION",
"keywords": [
"front-end",
"RBX",
"typescript"
],
"homepage": "RBX_HTTPS_REPOSITORY",
"bugs": {
"url": "RBX_HTTPS_REPOSITORY/issues"
},
"repository": {
"type": "git",
"url": "git+RBX_HTTPS_REPOSITORY"
},
"license": "MIT",
"author": "RBX_AUTHOR",
"type": "module",
"bin": {
"RBX_COMMAND": "./dist/commands/RBX_COMMAND.js"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "pnpm run ts:check",
"build": "pkgroll",
"commit": "git-cz",
"commitlint": "commitlint --edit",
"eslint:config": "eslint --print-config eslint.config.js",
"eslint:fix": "eslint --fix",
"prepare": "husky || true",
"release": "semantic-release",
"start": "pkgroll --watch",
"test:unit": "vitest run",
"ts:check": "tsc --noEmit",
"ts:config": "tsc --showConfig"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@rodbe/check-updates": "^1.3.0",
"@rodbe/get-config": "^1.0.1",
"chalk": "^5.4.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@commitlint/cz-commitlint": "^19.6.1",
"@commitlint/format": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.21.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/node": "^22.13.5",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^3.0.6",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "5.0.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-package-json": "^0.26.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"nano-staged": "^0.8.0",
"pkgroll": "^2.11.0",
"prettier": "^3.5.2",
"prettier-plugin-curly": "^0.3.1",
"prettier-plugin-packagejson": "^2.5.8",
"semantic-release": "20.1.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vitest": "^3.0.6"
},
"packageManager": "pnpm@9.15.2",
"engines": {
"node": ">= 18.18.2",
"npm": ">= 8.11.0",
"pnpm": ">= 9.15.2"
},
"volta": {
"node": "18.18.2"
},
"publishConfig": {
"access": "public"
},
"enginesStrict": true
}