@nyig/models 0.1.0 → 0.2.0

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.
@@ -4,7 +4,7 @@
4
4
  "commit": false,
5
5
  "fixed": [],
6
6
  "linked": [],
7
- "access": "restricted",
7
+ "access": "public",
8
8
  "baseBranch": "main",
9
9
  "updateInternalDependencies": "patch",
10
10
  "ignore": []
package/.husky/pre-commit CHANGED
File without changes
package/.prettierignore CHANGED
@@ -1,2 +1,4 @@
1
1
  dist
2
2
  node_modules
3
+ .changeset
4
+ .husky
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @nyig/models
2
+
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - bc1c80f: Add pnpm lock and remove package-lock
package/README.md CHANGED
@@ -1,3 +1,3 @@
1
1
  # NYIG Models
2
2
 
3
- Model definition for NYIG service.
3
+ Model definitions for NYIG service.
package/package.json CHANGED
@@ -1,18 +1,10 @@
1
1
  {
2
2
  "name": "@nyig/models",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
8
- "scripts": {
9
- "build": "tsup src/index.ts --format cjs,esm --dts",
10
- "clean": "rm -rf dist node_modules",
11
- "format": "prettier --write src",
12
- "lint": "pnpm run format && tsc",
13
- "prepare": "husky install",
14
- "release": "pnpm run build && changeset publish"
15
- },
16
8
  "peerDependencies": {
17
9
  "zod": ">=3.22.4"
18
10
  },
@@ -26,5 +18,12 @@
26
18
  },
27
19
  "lint-staged": {
28
20
  "*.{js,ts,md}": "prettier --write"
21
+ },
22
+ "scripts": {
23
+ "build": "tsup src/index.ts --format cjs,esm --dts",
24
+ "clean": "rm -rf dist node_modules",
25
+ "format": "prettier --write src",
26
+ "lint": "pnpm run format && tsc",
27
+ "release": "pnpm run build && changeset publish"
29
28
  }
30
- }
29
+ }