@regardio/js 0.9.3 → 1.0.1

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/README.md +1 -1
  2. package/package.json +31 -34
package/README.md CHANGED
@@ -184,4 +184,4 @@ This package is primarily maintained for Regardio's internal use, but we welcome
184
184
  ---
185
185
 
186
186
  *Part of the [Regardio Ensemble](https://regard.io/ensemble) toolkit for
187
- collective well-being.*
187
+ shared well-being.*
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
3
  "name": "@regardio/js",
4
- "version": "0.9.3",
4
+ "version": "1.0.1",
5
5
  "private": false,
6
6
  "description": "Regardio JavaScript utilities",
7
7
  "keywords": [
@@ -14,13 +14,14 @@
14
14
  "utilities",
15
15
  "validation"
16
16
  ],
17
- "homepage": "https://github.com/regardio/js#readme",
17
+ "homepage": "https://codeberg.org/regardio/commons/src/branch/main/packages/js",
18
18
  "bugs": {
19
- "url": "https://github.com/regardio/js/issues"
19
+ "url": "https://codeberg.org/regardio/commons/issues"
20
20
  },
21
21
  "repository": {
22
22
  "type": "git",
23
- "url": "git+https://github.com/regardio/js.git"
23
+ "url": "git+https://codeberg.org/regardio/commons.git",
24
+ "directory": "packages/js"
24
25
  },
25
26
  "license": "MIT",
26
27
  "author": "Bernd Matzner <bernd.matzner@regard.io>",
@@ -55,40 +56,36 @@
55
56
  "files": [
56
57
  "dist"
57
58
  ],
58
- "scripts": {
59
- "build": "tsdown",
60
- "clean": "exec-clean .turbo dist",
61
- "dev": "tsdown --watch",
62
- "fix:biome": "lint-biome check --write --unsafe .",
63
- "fix:md": "lint-md --fix",
64
- "fix:pkg": "lint-package --fix",
65
- "fix": "exec-s fix:pkg fix:md fix:biome",
66
- "lint:biome": "lint-biome check .",
67
- "lint:md": "lint-md",
68
- "lint:pkg": "lint-package",
69
- "lint": "exec-s lint:md lint:biome",
70
- "prepare": "exec-husky",
71
- "report": "vitest run --coverage",
72
- "ship:hotfix": "ship-hotfix",
73
- "ship:production": "ship-production",
74
- "ship:staging": "ship-staging",
75
- "test:unit": "vitest run",
76
- "test": "exec-s test:*",
77
- "tsdown": "tsdown",
78
- "typecheck": "exec-tsc --noEmit"
79
- },
80
59
  "dependencies": {
81
- "cookie-es": "3.0.1",
60
+ "cookie-es": "3.1.1",
82
61
  "intl-parse-accept-language": "1.0.0",
83
- "react-router": "7.13.2"
62
+ "react-router": "7.14.1"
84
63
  },
85
64
  "devDependencies": {
86
- "@regardio/dev": "^1.18.2",
87
65
  "@total-typescript/ts-reset": "0.6.1",
88
- "@types/node": "25.5.0",
89
- "@vitest/coverage-v8": "4.1.1",
90
- "@vitest/ui": "4.1.1",
91
- "tsdown": "0.21.5",
92
- "vitest": "4.1.1"
66
+ "@types/node": "25.6.0",
67
+ "@vitest/coverage-v8": "4.1.4",
68
+ "@vitest/ui": "4.1.4",
69
+ "tsdown": "0.21.9",
70
+ "vitest": "4.1.4",
71
+ "@regardio/dev": "2.0.1"
72
+ },
73
+ "scripts": {
74
+ "build": "tsdown",
75
+ "clean": "rimraf .turbo dist",
76
+ "dev": "tsdown --watch",
77
+ "fix": "run-s fix:pkg fix:md fix:biome",
78
+ "fix:biome": "biome check --write --unsafe .",
79
+ "fix:md": "markdownlint-cli2 --config ../../.markdownlint-cli2.jsonc --fix",
80
+ "fix:pkg": "sort-package-json",
81
+ "lint": "run-s lint:md lint:biome",
82
+ "lint:biome": "biome check .",
83
+ "lint:md": "markdownlint-cli2 --config ../../.markdownlint-cli2.jsonc",
84
+ "lint:pkg": "sort-package-json --check",
85
+ "report": "vitest run --coverage",
86
+ "test": "run-p test:*",
87
+ "test:e2e": "echo 'no e2e tests'",
88
+ "test:unit": "vitest run",
89
+ "typecheck": "tsc --noEmit"
93
90
  }
94
91
  }