@regardio/dev 1.13.5 → 1.13.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,60 +1,6 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
- "name": "@regardio/dev",
4
- "version": "1.13.5",
5
- "private": false,
6
- "description": "Regardio developer tooling for testing, linting, and build workflows",
7
- "keywords": [
8
- "biome",
9
- "changesets",
10
- "commitlint",
11
- "dev",
12
- "husky",
13
- "linting",
14
- "markdownlint",
15
- "playwright",
16
- "testing",
17
- "tooling",
18
- "typescript",
19
- "vitest"
20
- ],
21
- "homepage": "https://github.com/regardio/dev/blob/main/README.md",
22
- "bugs": {
23
- "url": "https://github.com/regardio/dev/issues"
24
- },
25
- "repository": {
26
- "type": "git",
27
- "url": "git+https://github.com/regardio/dev.git"
28
- },
29
- "license": "MIT",
30
3
  "author": "Bernd Matzner <bernd.matzner@regard.io>",
31
- "sideEffects": false,
32
- "type": "module",
33
- "exports": {
34
- "./biome": "./src/biome/preset.json",
35
- "./commitlint": "./src/commitlint/commitlint.cjs",
36
- "./markdownlint": "./src/markdownlint/markdownlint.json",
37
- "./markdownlint-cli2": "./src/markdownlint/markdownlint-cli2.jsonc",
38
- "./playwright": {
39
- "types": "./dist/playwright/index.d.ts",
40
- "default": "./dist/playwright/index.js"
41
- },
42
- "./testing/setup-react": {
43
- "types": "./dist/testing/setup-react.d.ts",
44
- "default": "./dist/testing/setup-react.js"
45
- },
46
- "./typescript/base.json": "./src/typescript/base.json",
47
- "./typescript/build.json": "./src/typescript/build.json",
48
- "./typescript/react.json": "./src/typescript/react.json",
49
- "./vitest/node": {
50
- "types": "./dist/vitest/node.d.ts",
51
- "default": "./dist/vitest/node.js"
52
- },
53
- "./vitest/react": {
54
- "types": "./dist/vitest/react.d.ts",
55
- "default": "./dist/vitest/react.js"
56
- }
57
- },
58
4
  "bin": {
59
5
  "exec-clean": "dist/bin/exec-clean.js",
60
6
  "exec-husky": "dist/bin/exec-husky.js",
@@ -69,39 +15,20 @@
69
15
  "lint-md": "dist/bin/lint-md.js",
70
16
  "lint-package": "dist/bin/lint-package.js"
71
17
  },
72
- "files": [
73
- "dist",
74
- "src"
75
- ],
76
- "scripts": {
77
- "build": "tsc -p tsconfig.build.json",
78
- "clean": "tsx src/bin/exec-clean.ts .turbo dist",
79
- "fix": "run-p fix:*",
80
- "fix:biome": "biome check --write --unsafe .",
81
- "fix:md": "markdownlint-cli2 --fix",
82
- "fix:pkg": "tsx src/bin/lint-package.ts",
83
- "lint": "run-p lint:*",
84
- "lint:biome": "biome check .",
85
- "lint:md": "markdownlint-cli2",
86
- "prepare": "husky",
87
- "release": "tsx src/bin/flow-release.ts",
88
- "report": "vitest run --coverage",
89
- "test": "run-p test:*",
90
- "test:unit": "vitest run",
91
- "typecheck": "tsc --noEmit",
92
- "version": "tsx src/bin/flow-changeset.ts version"
18
+ "bugs": {
19
+ "url": "https://github.com/regardio/dev/issues"
93
20
  },
94
21
  "dependencies": {
95
- "@biomejs/biome": "2.4.0",
22
+ "@biomejs/biome": "2.4.4",
96
23
  "@changesets/changelog-github": "0.5.2",
97
24
  "@changesets/cli": "2.29.8",
98
- "@commitlint/cli": "20.4.1",
99
- "@commitlint/config-conventional": "20.4.1",
25
+ "@commitlint/cli": "20.4.2",
26
+ "@commitlint/config-conventional": "20.4.2",
100
27
  "@playwright/test": "1.58.2",
101
28
  "@testing-library/jest-dom": "6.9.1",
102
29
  "@testing-library/react": "16.3.2",
103
30
  "@total-typescript/ts-reset": "0.6.1",
104
- "@types/node": "25.2.3",
31
+ "@types/node": "25.3.0",
105
32
  "@vitest/coverage-v8": "4.0.18",
106
33
  "@vitest/ui": "4.0.18",
107
34
  "husky": "9.1.7",
@@ -116,6 +43,53 @@
116
43
  "vite": "7.3.1",
117
44
  "vitest": "4.0.18"
118
45
  },
46
+ "description": "Regardio developer tooling for testing, linting, and build workflows",
47
+ "engines": {
48
+ "node": ">=18"
49
+ },
50
+ "exports": {
51
+ "./biome": "./src/biome/preset.json",
52
+ "./commitlint": "./src/commitlint/commitlint.cjs",
53
+ "./markdownlint": "./src/markdownlint/markdownlint.json",
54
+ "./markdownlint-cli2": "./src/markdownlint/markdownlint-cli2.jsonc",
55
+ "./playwright": {
56
+ "default": "./dist/playwright/index.js",
57
+ "types": "./dist/playwright/index.d.ts"
58
+ },
59
+ "./testing/setup-react": {
60
+ "default": "./dist/testing/setup-react.js",
61
+ "types": "./dist/testing/setup-react.d.ts"
62
+ },
63
+ "./typescript/base.json": "./src/typescript/base.json",
64
+ "./typescript/build.json": "./src/typescript/build.json",
65
+ "./typescript/react.json": "./src/typescript/react.json",
66
+ "./vitest/node": {
67
+ "default": "./dist/vitest/node.js",
68
+ "types": "./dist/vitest/node.d.ts"
69
+ },
70
+ "./vitest/react": {
71
+ "default": "./dist/vitest/react.js",
72
+ "types": "./dist/vitest/react.d.ts"
73
+ }
74
+ },
75
+ "files": ["dist", "src"],
76
+ "homepage": "https://github.com/regardio/dev/blob/main/README.md",
77
+ "keywords": [
78
+ "biome",
79
+ "changesets",
80
+ "commitlint",
81
+ "dev",
82
+ "husky",
83
+ "linting",
84
+ "markdownlint",
85
+ "playwright",
86
+ "testing",
87
+ "tooling",
88
+ "typescript",
89
+ "vitest"
90
+ ],
91
+ "license": "MIT",
92
+ "name": "@regardio/dev",
119
93
  "peerDependencies": {
120
94
  "postcss": "8.4"
121
95
  },
@@ -124,10 +98,33 @@
124
98
  "optional": true
125
99
  }
126
100
  },
127
- "engines": {
128
- "node": ">=18"
129
- },
101
+ "private": false,
130
102
  "publishConfig": {
131
103
  "access": "public"
132
- }
104
+ },
105
+ "repository": {
106
+ "type": "git",
107
+ "url": "git+https://github.com/regardio/dev.git"
108
+ },
109
+ "scripts": {
110
+ "build": "tsc -p tsconfig.build.json",
111
+ "clean": "tsx src/bin/exec-clean.ts .turbo dist",
112
+ "fix": "run-p fix:*",
113
+ "fix:biome": "biome check --write --unsafe .",
114
+ "fix:md": "markdownlint-cli2 --fix",
115
+ "fix:pkg": "tsx src/bin/lint-package.ts",
116
+ "lint": "run-p lint:*",
117
+ "lint:biome": "biome check .",
118
+ "lint:md": "markdownlint-cli2",
119
+ "prepare": "husky",
120
+ "release": "tsx src/bin/flow-release.ts",
121
+ "report": "vitest run --coverage",
122
+ "test": "run-p test:*",
123
+ "test:unit": "vitest run",
124
+ "typecheck": "tsc --noEmit",
125
+ "version": "tsx src/bin/flow-changeset.ts version"
126
+ },
127
+ "sideEffects": false,
128
+ "type": "module",
129
+ "version": "1.13.6"
133
130
  }
@@ -40,7 +40,7 @@
40
40
  },
41
41
  "files": {
42
42
  "ignoreUnknown": false,
43
- "includes": ["**", "!**/package.json"],
43
+ "includes": ["**"],
44
44
  "maxSize": 1048576
45
45
  },
46
46
  "formatter": {