shinkansen-transmission 2.5.47 → 2.5.49

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/babel.config.cjs CHANGED
@@ -43,6 +43,10 @@ module.exports = (api) => {
43
43
  if (api) api.cache.using(env)
44
44
 
45
45
  return {
46
+ generatorOpts: {
47
+ compact: false,
48
+ minified: false
49
+ },
46
50
  presets,
47
51
  ignore: [
48
52
  /node_modules\/(?!shinkansen|@modernpoacher)/
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shinkansen-transmission",
3
- "version": "2.5.47",
3
+ "version": "2.5.49",
4
4
  "description": "Shinkansen Transmission",
5
5
  "keywords": [
6
6
  "Shinkansen",
@@ -40,23 +40,24 @@
40
40
  "fast-deep-equal": "^3.1.3"
41
41
  },
42
42
  "devDependencies": {
43
- "@babel/core": "^7.27.4",
44
- "@babel/preset-env": "^7.27.2",
43
+ "@babel/core": "^7.28.0",
44
+ "@babel/preset-env": "^7.28.0",
45
45
  "@babel/register": "^7.27.1",
46
- "@sequencemedia/eslint-config-standard": "^0.2.66",
47
- "@sequencemedia/eslint-config-typescript": "^0.1.104",
46
+ "@sequencemedia/eslint-config-standard": "^0.2.69",
47
+ "@sequencemedia/eslint-config-typescript": "^0.1.116",
48
48
  "@types/babel__register": "^7.17.3",
49
49
  "@types/chai": "^5.2.2",
50
50
  "@types/debug": "^4.1.12",
51
51
  "@types/mocha": "^10.0.10",
52
+ "@types/node": "^24.0.10",
52
53
  "c8": "^10.1.3",
53
54
  "chai": "^5.2.0",
54
55
  "core-js": "^3.43.0",
55
56
  "cross-env": "^7.0.3",
56
- "eslint": "^9.29.0",
57
- "globals": "^16.2.0",
57
+ "eslint": "^9.30.1",
58
+ "globals": "^16.3.0",
58
59
  "husky": "^9.1.7",
59
- "mocha": "^11.6.0"
60
+ "mocha": "^11.7.1"
60
61
  },
61
62
  "imports": {
62
63
  "#transmission": {
package/eslint.config.txt DELETED
@@ -1,112 +0,0 @@
1
- import globals from 'globals'
2
- import jsdoc from 'eslint-plugin-jsdoc'
3
- import merge from '@sequencemedia/eslint-merge'
4
- import standard from '@sequencemedia/eslint-config-standard/configs/recommended/merge'
5
- import typescript from '@sequencemedia/eslint-config-typescript/configs/recommended/merge'
6
-
7
- export default [
8
- {
9
- ignores: [
10
- 'coverage'
11
- ]
12
- },
13
- merge(
14
- jsdoc.configs['flat/recommended'],
15
- {
16
- languageOptions: {
17
- globals: {
18
- TransmissionTypes: 'readonly',
19
- PropertyKey: 'readonly'
20
- }
21
- },
22
- rules: {
23
- 'jsdoc/require-param-description': 'off',
24
- 'jsdoc/require-returns-description': 'off',
25
- 'jsdoc/check-tag-names': ['error', { definedTags: ['link'] }],
26
- 'jsdoc/tag-lines': [
27
- 'error',
28
- 'never',
29
- {
30
- tags: {
31
- description: {
32
- lines: 'always'
33
- },
34
- link: {
35
- lines: 'always'
36
- }
37
- },
38
- applyToEndTag: false,
39
- startLines: 1
40
- }
41
- ],
42
- 'jsdoc/lines-before-block': ['error', { lines: 1 }]
43
- }
44
- }
45
- ),
46
- /**
47
- * Standard config
48
- */
49
- standard({
50
- files: [
51
- '**/*.{mjs,cjs,mts,cts}'
52
- ],
53
- languageOptions: {
54
- globals: {
55
- ...globals.node
56
- }
57
- },
58
- rules: {
59
- '@stylistic/object-curly-newline': [
60
- 'error',
61
- {
62
- ImportDeclaration: 'always',
63
- ExportDeclaration: {
64
- multiline: true,
65
- minProperties: 2
66
- }
67
- }
68
- ]
69
- }
70
- }),
71
- standard({
72
- files: [
73
- 'test/**/*.{mjs,cjs,mts,cts}'
74
- ],
75
- languageOptions: {
76
- globals: {
77
- ...globals.mocha
78
- }
79
- }
80
- }),
81
-
82
- /**
83
- * TypeScript config
84
- */
85
- typescript({
86
- files: [
87
- '**/*.{mts,cts}'
88
- ],
89
- languageOptions: {
90
- globals: {
91
- ...globals.node,
92
- TransmissionTypes: 'readonly'
93
- }
94
- },
95
- rules: {
96
- '@typescript-eslint/max-params': [
97
- 'error',
98
- {
99
- max: 5
100
- }
101
- ]
102
- }
103
- }),
104
- {
105
- files: [
106
- 'src/**/*.d.{mts,cts}'
107
- ],
108
- rules: {
109
- 'no-redeclare': 'off'
110
- }
111
- }
112
- ]