@schafevormfenster/rest-commons 0.1.1 → 0.1.2

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 (1) hide show
  1. package/package.json +6 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schafevormfenster/rest-commons",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Centralized authority for REST standards and schemas - XSD schemas, parsing functions, and coding instructions",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -24,14 +24,14 @@
24
24
  "eslint": "^9.39.2",
25
25
  "typescript": "^5.9.3",
26
26
  "vitest": "^4.0.16",
27
- "@schafevormfenster/eslint-config": "0.0.7"
27
+ "@schafevormfenster/eslint-config": "0.0.8"
28
28
  },
29
29
  "dependencies": {
30
30
  "dayjs": "^1.11.19",
31
31
  "slugify": "^1.6.6",
32
32
  "zod": "^3.25.76",
33
- "@schafevormfenster/logging": "0.1.0",
34
- "@schafevormfenster/security": "0.1.0"
33
+ "@schafevormfenster/logging": "0.1.3",
34
+ "@schafevormfenster/security": "0.1.1"
35
35
  },
36
36
  "scripts": {
37
37
  "typecheck": "tsc --noEmit",
@@ -39,6 +39,7 @@
39
39
  "test": "TZ=UTC vitest run",
40
40
  "test:watch": "TZ=UTC vitest",
41
41
  "build": "tsc",
42
- "check": "pnpm run typecheck && pnpm run lint && pnpm run test && pnpm run build"
42
+ "check": "pnpm run typecheck && pnpm run lint && pnpm run test && pnpm run build",
43
+ "release": "pnpm run build && bash -c 'cp ../../.npmrc .npmrc && npm publish --access public && rm .npmrc'"
43
44
  }
44
45
  }