@skilbjo/config-rc 1.0.46 → 1.0.47

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.
@@ -19,7 +19,7 @@ updates:
19
19
  versioning-strategy: increase
20
20
  open-pull-requests-limit: 15
21
21
  commit-message:
22
- prefix: fix
22
+ prefix: build
23
23
  include: scope
24
24
 
25
25
  - package-ecosystem: github-actions
@@ -30,5 +30,5 @@ updates:
30
30
  - skilbjo
31
31
  open-pull-requests-limit: 5
32
32
  commit-message:
33
- prefix: fix
33
+ prefix: ci
34
34
  include: scope
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.0.47](https://github.com/skilbjo/config-rc/compare/v1.0.46...v1.0.47) (2026-04-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add ts@7 friendly setting ([5878d05](https://github.com/skilbjo/config-rc/commit/5878d05146d3002fd08b30390e9cf65e815350b3))
7
+
1
8
  ## [1.0.46](https://github.com/skilbjo/config-rc/compare/v1.0.45...v1.0.46) (2026-04-07)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,38 +1,30 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@skilbjo/config-rc",
4
- "version": "1.0.46",
5
- "description": "eslint, prettier, & tsconfig config",
4
+ "version": "1.0.47",
6
5
  "type": "module",
7
6
  "main": "index.js",
8
- "exports": {
9
- ".": "./index.js",
10
- "./tsconfig.json": "./tsconfig.json",
11
- "./*": "./*"
12
- },
13
7
  "private": false,
14
8
  "repository": {
15
9
  "type": "git",
16
10
  "url": "git+https://github.com/skilbjo/config-rc.git"
17
11
  },
12
+ "author": "skilbjo",
13
+ "license": "ISC",
14
+ "bugs": {
15
+ "url": "https://github.com/skilbjo/config-rc/issues"
16
+ },
17
+ "homepage": "https://github.com/skilbjo/config-rc#readme",
18
18
  "scripts": {
19
19
  "prepare": "if [ -z \"$GITHUB_ACTIONS\" ]; then npx husky install; fi",
20
+ "exec": "node",
20
21
  "eslint": "eslint .",
21
- "lint": "npm run eslint",
22
+ "lint": "eslint",
23
+ "lint:fix": "eslint --fix .",
22
24
  "depcheck": "depcheck",
23
25
  "test": "echo \"Error: no test specified\" && exit 1",
24
26
  "prepare-npm": "jq 'del(.publishConfig) | . + { publishConfig: { registry: \"https://registry.npmjs.org/\", access: \"public\", provenance: true } }' package.json >package2.json && mv package2.json package.json"
25
27
  },
26
- "keywords": [
27
- "eslint",
28
- "eslintrc"
29
- ],
30
- "author": "skilbjo",
31
- "license": "ISC",
32
- "bugs": {
33
- "url": "https://github.com/skilbjo/config-rc/issues"
34
- },
35
- "homepage": "https://github.com/skilbjo/config-rc#readme",
36
28
  "dependencies": {
37
29
  "@eslint/js": "9.39.2",
38
30
  "@stylistic/eslint-plugin": "5.10.0",
@@ -41,23 +33,28 @@
41
33
  "eslint-config-prettier": "10.1.8",
42
34
  "eslint-import-resolver-typescript": "4.4.4",
43
35
  "eslint-plugin-import": "2.32.0",
44
- "eslint-plugin-jest": "29.15.1",
36
+ "eslint-plugin-jest": "29.15.2",
45
37
  "eslint-plugin-n": "17.24.0",
46
38
  "eslint-plugin-perfectionist": "5.8.0",
47
39
  "eslint-plugin-prettier": "5.5.5",
48
40
  "eslint-plugin-security": "4.0.0",
49
- "globals": "17.4.0",
50
- "prettier": "3.8.1",
41
+ "globals": "17.5.0",
42
+ "prettier": "3.8.2",
51
43
  "typescript": "6.0.2",
52
- "typescript-eslint": "8.58.0"
44
+ "typescript-eslint": "8.58.1"
53
45
  },
54
46
  "devDependencies": {
55
47
  "@commitlint/cli": "20.5.0",
56
48
  "@commitlint/config-angular": "20.5.0",
57
- "@types/node": "25.5.2",
49
+ "@types/node": "25.6.0",
58
50
  "depcheck": "1.4.7",
59
51
  "husky": "9.1.7"
60
52
  },
53
+ "exports": {
54
+ ".": "./index.js",
55
+ "./tsconfig.json": "./tsconfig.json",
56
+ "./*": "./*"
57
+ },
61
58
  "commitlint": {
62
59
  "extends": [
63
60
  "@commitlint/config-angular"
package/tsconfig.json CHANGED
@@ -11,6 +11,7 @@
11
11
  "ES2025"
12
12
  ],
13
13
  "erasableSyntaxOnly": true,
14
+ "verbatimModuleSyntax": true,
14
15
  "outDir": "dist",
15
16
  "declaration": true,
16
17
  "forceConsistentCasingInFileNames": true,