@soybeanjs/cli 0.5.4 → 0.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soybeanjs/cli",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "SoybeanJS's command line tools",
5
5
  "author": {
6
6
  "name": "Soybean",
@@ -19,9 +19,10 @@
19
19
  "registry": "https://registry.npmjs.org/"
20
20
  },
21
21
  "exports": {
22
- "./lint-staged": {
23
- "import": "./dist/lint-staged.config.mjs",
24
- "require": "./dist/lint-staged.config.cjs"
22
+ ".": {
23
+ "import": "./dist/index.mjs",
24
+ "require": "./dist/index.cjs",
25
+ "types": "./dist/index.d.ts"
25
26
  }
26
27
  },
27
28
  "bin": {
@@ -33,7 +34,7 @@
33
34
  ],
34
35
  "dependencies": {
35
36
  "@soybeanjs/changelog": "0.0.2",
36
- "bumpp": "9.1.0",
37
+ "bumpp": "9.1.1",
37
38
  "c12": "1.4.1",
38
39
  "cac": "6.7.14",
39
40
  "enquirer": "2.3.6",
@@ -46,26 +47,25 @@
46
47
  },
47
48
  "devDependencies": {
48
49
  "@soybeanjs/cli": "link:",
49
- "@types/node": "20.2.5",
50
- "eslint": "8.41.0",
51
- "eslint-config-soybeanjs": "0.4.7",
50
+ "@types/node": "20.3.0",
51
+ "eslint": "8.42.0",
52
+ "eslint-config-soybeanjs": "0.4.9",
52
53
  "simple-git-hooks": "2.8.1",
53
54
  "tsx": "3.12.7",
54
- "typescript": "5.0.4",
55
+ "typescript": "5.1.3",
55
56
  "unbuild": "1.2.1"
56
57
  },
57
58
  "simple-git-hooks": {
58
59
  "commit-msg": "pnpm soy git-commit-verify",
59
60
  "pre-commit": "pnpm typecheck && pnpm soy lint-staged"
60
61
  },
61
- "github-token": "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",
62
62
  "scripts": {
63
63
  "build": "pnpm typecheck && unbuild",
64
64
  "lint": "eslint . --fix",
65
- "format": "soy prettier-format",
65
+ "format": "soy prettier-write",
66
66
  "commit": "soy git-commit",
67
67
  "cleanup": "soy cleanup",
68
- "update-pkg": "soy update-pkg",
68
+ "ncu": "soy ncu",
69
69
  "publish-pkg": "pnpm -r publish --access public",
70
70
  "typecheck": "tsc --noEmit",
71
71
  "release": "soy release && pnpm build && pnpm publish-pkg"
@@ -1,7 +0,0 @@
1
- 'use strict';
2
-
3
- const config = {
4
- "*": "soy eslint-prettier"
5
- };
6
-
7
- module.exports = config;
@@ -1,3 +0,0 @@
1
- declare const config: Record<string, string | string[]>;
2
-
3
- export { config as default };
@@ -1,5 +0,0 @@
1
- const config = {
2
- "*": "soy eslint-prettier"
3
- };
4
-
5
- export { config as default };