@naturalcycles/dev-lib 20.27.1 → 20.29.0

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.
@@ -123,7 +123,7 @@
123
123
  "typescript/prefer-ts-expect-error": 2,
124
124
  "typescript/require-await": 0, // not good yet
125
125
  "typescript/restrict-plus-operands": 2,
126
- "typescript/return-await": [0, "always"], // not good yet
126
+ "typescript/return-await": [2, "error-handling-correctness-only"],
127
127
  "typescript/only-throw-error": 2,
128
128
  "typescript/no-unsafe-function-type": 2,
129
129
  "typescript/no-misused-promises": 0,
@@ -47,8 +47,8 @@
47
47
  "noUnusedLocals": false, // doesn't support _prefixed vars
48
48
  "noUnusedParameters": true,
49
49
 
50
- // Enabled should be faster, but will catch less errors
51
- // "skipLibCheck": true,
50
+ // Enabled for speedup
51
+ "skipLibCheck": true,
52
52
 
53
53
  // Other
54
54
  "jsx": "preserve",
package/package.json CHANGED
@@ -1,45 +1,55 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
3
  "type": "module",
4
- "version": "20.27.1",
4
+ "version": "20.29.0",
5
5
  "dependencies": {
6
6
  "@biomejs/biome": "^2",
7
- "@eslint/js": "^9",
8
7
  "prompts": "^2",
9
8
  "@naturalcycles/js-lib": "^15",
10
9
  "@naturalcycles/nodejs-lib": "^15",
11
10
  "@vitest/coverage-v8": "^4",
12
- "eslint": "^9",
13
11
  "eslint-plugin-oxlint": "^1",
14
12
  "globals": "^17",
15
13
  "lint-staged": "^16",
16
14
  "micromatch": "^4",
17
15
  "oxfmt": "^0",
18
16
  "oxlint": "^1",
19
- "oxlint-tsgolint": "*",
20
- "typescript-eslint": "^8"
17
+ "oxlint-tsgolint": "^0"
21
18
  },
22
19
  "peerDependencies": {
20
+ "@eslint/js": "^9",
23
21
  "@typescript/native-preview": "^7.0.0-0",
22
+ "eslint": "^9",
24
23
  "husky": "^9",
25
24
  "stylelint": "^16",
26
25
  "stylelint-config-standard-scss": "^16",
27
- "typescript": "^5"
26
+ "typescript": "^5",
27
+ "typescript-eslint": "^8"
28
28
  },
29
29
  "peerDependenciesMeta": {
30
+ "@eslint/js": {
31
+ "optional": true
32
+ },
30
33
  "@typescript/native-preview": {
31
34
  "optional": true
32
35
  },
36
+ "eslint": {
37
+ "optional": true
38
+ },
33
39
  "stylelint": {
34
40
  "optional": true
35
41
  },
36
42
  "stylelint-config-standard-scss": {
37
43
  "optional": true
44
+ },
45
+ "typescript-eslint": {
46
+ "optional": true
38
47
  }
39
48
  },
40
49
  "devDependencies": {
41
50
  "@types/node": "^25",
42
- "@types/prompts": "^2"
51
+ "@types/prompts": "^2",
52
+ "@typescript/native-preview": "^7.0.0-0"
43
53
  },
44
54
  "exports": {
45
55
  "./cfg/": "./cfg/",