@divythebill/schema 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.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @divythebill/schema
2
+
3
+ Internal shared validation schemas for Divy applications. Published for
4
+ dependency-resolution purposes only — not intended for external use, no API
5
+ stability guarantees, no support.
package/dist/index.cjs ADDED
@@ -0,0 +1,5 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ //#region src/index.ts
3
+ const SCHEMA_PACKAGE_NAME = "@divythebill/schema";
4
+ //#endregion
5
+ exports.SCHEMA_PACKAGE_NAME = SCHEMA_PACKAGE_NAME;
@@ -0,0 +1,4 @@
1
+ //#region src/index.d.ts
2
+ declare const SCHEMA_PACKAGE_NAME = "@divythebill/schema";
3
+ //#endregion
4
+ export { SCHEMA_PACKAGE_NAME };
@@ -0,0 +1,4 @@
1
+ //#region src/index.d.ts
2
+ declare const SCHEMA_PACKAGE_NAME = "@divythebill/schema";
3
+ //#endregion
4
+ export { SCHEMA_PACKAGE_NAME };
package/dist/index.mjs ADDED
@@ -0,0 +1,4 @@
1
+ //#region src/index.ts
2
+ const SCHEMA_PACKAGE_NAME = "@divythebill/schema";
3
+ //#endregion
4
+ export { SCHEMA_PACKAGE_NAME };
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@divythebill/schema",
3
+ "version": "0.1.0",
4
+ "description": "Internal shared validation schemas for Divy applications",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/DivyTheBill/divy-schema.git"
8
+ },
9
+ "license": "UNLICENSED",
10
+ "type": "module",
11
+ "exports": {
12
+ ".": {
13
+ "import": {
14
+ "types": "./dist/index.d.mts",
15
+ "default": "./dist/index.mjs"
16
+ },
17
+ "require": {
18
+ "types": "./dist/index.d.cts",
19
+ "default": "./dist/index.cjs"
20
+ }
21
+ }
22
+ },
23
+ "main": "./dist/index.cjs",
24
+ "module": "./dist/index.mjs",
25
+ "types": "./dist/index.d.cts",
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "sideEffects": false,
30
+ "engines": {
31
+ "node": ">=20"
32
+ },
33
+ "scripts": {
34
+ "build": "tsdown src/index.ts --format esm,cjs --dts --publint",
35
+ "typecheck": "tsc --noEmit",
36
+ "prepublishOnly": "npm run build"
37
+ },
38
+ "peerDependencies": {
39
+ "zod": "^4.4.0"
40
+ },
41
+ "devDependencies": {
42
+ "publint": "^0.3.21",
43
+ "tsdown": "^0.22.8",
44
+ "typescript": "~6.0.3",
45
+ "zod": "^4.4.3"
46
+ },
47
+ "publishConfig": {
48
+ "access": "public"
49
+ }
50
+ }