@k03mad/dice 5.17.0 → 5.17.2

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.
@@ -16,5 +16,5 @@ jobs:
16
16
  - uses: actions/setup-node@v4
17
17
  with:
18
18
  node-version-file: '.nvmrc'
19
- - run: npm run setup
19
+ - run: npm i
20
20
  - run: npm run lint
@@ -26,7 +26,7 @@ jobs:
26
26
  registry-url: 'https://registry.npmjs.org'
27
27
 
28
28
  - if: steps.check_pkg_version.outputs.changed == 'true'
29
- run: npm run setup
29
+ run: npm i
30
30
 
31
31
  - if: steps.check_pkg_version.outputs.changed == 'true'
32
32
  run: npm publish
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k03mad/dice",
3
- "version": "5.17.0",
3
+ "version": "5.17.2",
4
4
  "description": "Dice",
5
5
  "maintainers": [
6
6
  "Kirill Molchanov <k03.mad@gmail.com"
@@ -15,23 +15,19 @@
15
15
  "license": "MIT",
16
16
  "type": "module",
17
17
  "engines": {
18
- "node": ">=22"
18
+ "node": ">=22.20"
19
19
  },
20
20
  "dependencies": {
21
- "chalk": "5.6.0",
22
- "terminal-image": "3.1.1"
21
+ "chalk": "5.6.2",
22
+ "terminal-image": "4.0.0"
23
23
  },
24
24
  "devDependencies": {
25
- "@k03mad/eslint-config": "29.9.0",
26
- "eslint": "9.34.0",
25
+ "@k03mad/eslint-config": "29.13.2",
26
+ "eslint": "9.36.0",
27
27
  "husky": "9.1.7"
28
28
  },
29
29
  "scripts": {
30
- "lint": "npm run lint:eslint",
31
- "lint:eslint": "eslint ./ --cache",
32
- "clean": "rm -rf ./node_modules .eslintcache || true",
33
- "setup": "npm run clean && npm run setup:pnpm",
34
- "setup:pnpm": "npm i pnpm -g && pnpm i",
30
+ "lint": "eslint ./ --cache",
35
31
  "prepare": "husky || true"
36
32
  }
37
33
  }