@regardio/dev 1.13.6 → 1.13.8

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.
Files changed (2) hide show
  1. package/package.json +77 -76
  2. package/src/biome/preset.json +12 -0
package/package.json CHANGED
@@ -1,6 +1,60 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
+ "name": "@regardio/dev",
4
+ "version": "1.13.8",
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",
3
30
  "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
+ },
4
58
  "bin": {
5
59
  "exec-clean": "dist/bin/exec-clean.js",
6
60
  "exec-husky": "dist/bin/exec-husky.js",
@@ -15,8 +69,25 @@
15
69
  "lint-md": "dist/bin/lint-md.js",
16
70
  "lint-package": "dist/bin/lint-package.js"
17
71
  },
18
- "bugs": {
19
- "url": "https://github.com/regardio/dev/issues"
72
+ "files": ["dist", "src"],
73
+ "scripts": {
74
+ "build": "tsc -p tsconfig.build.json",
75
+ "clean": "tsx src/bin/exec-clean.ts .turbo dist",
76
+ "fix": "run-s fix:pkg fix:md fix:biome",
77
+ "fix:biome": "biome check --write --unsafe .",
78
+ "fix:md": "markdownlint-cli2 --fix",
79
+ "fix:pkg": "tsx src/bin/lint-package.ts --fix",
80
+ "lint": "run-s lint:md lint:biome",
81
+ "lint:biome": "biome check .",
82
+ "lint:md": "markdownlint-cli2",
83
+ "lint:pkg": "tsx src/bin/lint-package.ts",
84
+ "prepare": "husky",
85
+ "release": "tsx src/bin/flow-release.ts",
86
+ "report": "vitest run --coverage",
87
+ "test": "run-p test:*",
88
+ "test:unit": "vitest run",
89
+ "typecheck": "tsc --noEmit",
90
+ "version": "tsx src/bin/flow-changeset.ts version"
20
91
  },
21
92
  "dependencies": {
22
93
  "@biomejs/biome": "2.4.4",
@@ -43,53 +114,6 @@
43
114
  "vite": "7.3.1",
44
115
  "vitest": "4.0.18"
45
116
  },
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",
93
117
  "peerDependencies": {
94
118
  "postcss": "8.4"
95
119
  },
@@ -98,33 +122,10 @@
98
122
  "optional": true
99
123
  }
100
124
  },
101
- "private": false,
125
+ "engines": {
126
+ "node": ">=18"
127
+ },
102
128
  "publishConfig": {
103
129
  "access": "public"
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"
130
+ }
130
131
  }
@@ -327,6 +327,18 @@
327
327
  }
328
328
  }
329
329
  },
330
+ "overrides": [
331
+ {
332
+ "assist": {
333
+ "actions": {
334
+ "source": {
335
+ "useSortedKeys": "off"
336
+ }
337
+ }
338
+ },
339
+ "includes": ["**/package.json"]
340
+ }
341
+ ],
330
342
  "root": true,
331
343
  "vcs": {
332
344
  "clientKind": "git",