@nyig/models 0.1.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.
@@ -0,0 +1,8 @@
1
+ # Changesets
2
+
3
+ Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4
+ with multi-package repos, or single-package repos to help you version and publish your code. You can
5
+ find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6
+
7
+ We have a quick list of common questions to get you started engaging with this project in
8
+ [our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
@@ -0,0 +1,11 @@
1
+ {
2
+ "$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json",
3
+ "changelog": "@changesets/cli/changelog",
4
+ "commit": false,
5
+ "fixed": [],
6
+ "linked": [],
7
+ "access": "restricted",
8
+ "baseBranch": "main",
9
+ "updateInternalDependencies": "patch",
10
+ "ignore": []
11
+ }
package/.editorconfig ADDED
@@ -0,0 +1,9 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_size = 2
5
+ indent_style = space
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
@@ -0,0 +1,22 @@
1
+ name: Build and push package to npm on merge to 'main'
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - "main"
7
+
8
+ jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: pnpm/action-setup@v3
14
+ with:
15
+ version: 8
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version: 20.x
19
+ cache: pnpm
20
+
21
+ - run: pnpm install --frozen-lockfile
22
+ - run: pnpm run lint && pnpm run build
@@ -0,0 +1,36 @@
1
+ name: Publish
2
+ on:
3
+ workflow_run:
4
+ workflows: [Build and push package to npm on merge to 'main']
5
+ branches: [main]
6
+ types: [completed]
7
+
8
+ concurrency: ${{ github.workflow }}-${{ github.ref }}
9
+
10
+ permissions:
11
+ contents: write
12
+ pull-requests: write
13
+
14
+ jobs:
15
+ publish:
16
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - uses: pnpm/action-setup@v3
21
+ with:
22
+ version: 8
23
+ - uses: actions/setup-node@v4
24
+ with:
25
+ node-version: 20.x
26
+ cache: "pnpm"
27
+
28
+ - run: pnpm install --frozen-lockfile
29
+ - name: Create Release Pull Request or Publish
30
+ id: changesets
31
+ uses: changesets/action@v1
32
+ with:
33
+ publish: pnpm run release
34
+ env:
35
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -0,0 +1,5 @@
1
+ #!/bin/sh
2
+
3
+ . "$(dirname "$0")/_/husky.sh"
4
+
5
+ npx lint-staged
@@ -0,0 +1,2 @@
1
+ dist
2
+ node_modules
@@ -0,0 +1,4 @@
1
+ {
2
+ "printWidth": 100,
3
+ "tabWidth": 2
4
+ }
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # NYIG Models
2
+
3
+ Model definition for NYIG service.
@@ -0,0 +1,11 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const zStudent: z.ZodObject<{
4
+ name: z.ZodString;
5
+ }, "strip", z.ZodTypeAny, {
6
+ name: string;
7
+ }, {
8
+ name: string;
9
+ }>;
10
+
11
+ export { zStudent };
@@ -0,0 +1,11 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const zStudent: z.ZodObject<{
4
+ name: z.ZodString;
5
+ }, "strip", z.ZodTypeAny, {
6
+ name: string;
7
+ }, {
8
+ name: string;
9
+ }>;
10
+
11
+ export { zStudent };
package/dist/index.js ADDED
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var src_exports = {};
22
+ __export(src_exports, {
23
+ zStudent: () => zStudent
24
+ });
25
+ module.exports = __toCommonJS(src_exports);
26
+ var import_zod = require("zod");
27
+ var zStudent = import_zod.z.object({
28
+ name: import_zod.z.string()
29
+ });
30
+ // Annotate the CommonJS export names for ESM import in node:
31
+ 0 && (module.exports = {
32
+ zStudent
33
+ });
package/dist/index.mjs ADDED
@@ -0,0 +1,8 @@
1
+ // src/index.ts
2
+ import { z } from "zod";
3
+ var zStudent = z.object({
4
+ name: z.string()
5
+ });
6
+ export {
7
+ zStudent
8
+ };
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@nyig/models",
3
+ "version": "0.1.0",
4
+ "license": "MIT",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
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
+ "peerDependencies": {
17
+ "zod": ">=3.22.4"
18
+ },
19
+ "devDependencies": {
20
+ "@changesets/cli": "^2.27.1",
21
+ "husky": "^9.0.10",
22
+ "lint-staged": "^15.2.2",
23
+ "prettier": "^3.2.5",
24
+ "tsup": "^8.0.2",
25
+ "typescript": "^5.3.3"
26
+ },
27
+ "lint-staged": {
28
+ "*.{js,ts,md}": "prettier --write"
29
+ }
30
+ }
package/src/index.ts ADDED
@@ -0,0 +1,5 @@
1
+ import { z } from "zod";
2
+
3
+ export const zStudent = z.object({
4
+ name: z.string(),
5
+ });
package/tsconfig.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "moduleDetection": "force",
5
+ "esModuleInterop": true,
6
+ "forceConsistentCasingInFileNames": true,
7
+ "strict": true,
8
+ "skipLibCheck": true,
9
+ "noUncheckedIndexedAccess": true,
10
+ /* If NOT transpiling with TypeScript: */
11
+ "moduleResolution": "Bundler",
12
+ "module": "ESNext",
13
+ "noEmit": true,
14
+ /* If your code runs in the DOM: */
15
+ "lib": ["es2022", "dom", "dom.iterable"]
16
+ },
17
+ "include": ["src"],
18
+ "exclude": ["dist", "node_modules"]
19
+ }