@ecogood/e-calculator-schemas 2.7.16 → 2.7.17

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 -5
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -6,7 +6,7 @@ and the [E-Calculator Frontend](https://git.ecogood.org/services/e-calculator-fr
6
6
  ## Install
7
7
 
8
8
  ```bash
9
- npm install e-calculator-schemas
9
+ yarn install e-calculator-schemas
10
10
  ```
11
11
 
12
12
  ## Usage
@@ -20,7 +20,3 @@ const regionJson = {
20
20
  RegionResponseBodySchema.parse(regionJson);
21
21
  ```
22
22
 
23
- ## Publish
24
- ```bash
25
- npm publish
26
- ```
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@ecogood/e-calculator-schemas",
3
- "version": "2.7.16",
3
+ "version": "2.7.17",
4
4
  "description": "A package providing the schemas for the e-calculator application.",
5
5
  "main": "dist/e-calculator-schemas",
6
6
  "types": "dist/e-calculator-schemas",
7
7
  "scripts": {
8
8
  "build": "tsc",
9
+ "check-ts": "tsc --noEmit",
9
10
  "test": "jest --watch --runInBand",
10
11
  "test:ci": "jest --runInBand",
11
12
  "format": "prettier --write .",
12
13
  "lint": "eslint .",
13
14
  "lint-fix": "eslint . --fix",
14
- "update:to:latest": "ncu -u && yarn update && yarn install && yarn audit fix",
15
- "prepare": "rm -r dist || true && yarn run build && yarn run test:ci && yarn run lint"
15
+ "update:to:latest": "ncu -u && yarn update && yarn install && yarn audit fix"
16
16
  },
17
17
  "publishConfig": {
18
18
  "access": "public"
@@ -24,7 +24,7 @@
24
24
  ],
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "https://git.ecogood.org/services/e-calculator-schemas"
27
+ "url": "https://github.com/econgood-it/e-calculator-schema"
28
28
  },
29
29
  "keywords": [
30
30
  "version",
@@ -33,7 +33,7 @@
33
33
  "author": "Michael Rudolph",
34
34
  "license": "MIT",
35
35
  "bugs": {
36
- "url": "https://git.ecogood.org/services/e-calculator-schemas/issues"
36
+ "url": "https://github.com/econgood-it/e-calculator-schema/issues"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@eslint/js": "^9.4.0",