@roastery/terroir 0.0.3 → 0.0.5

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/dist/index.cjs ADDED
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+
30
+ // src/index.ts
31
+ var index_exports = {};
32
+ __export(index_exports, {
33
+ t: () => t
34
+ });
35
+ module.exports = __toCommonJS(index_exports);
36
+ var t = __toESM(require("@sinclair/typebox"), 1);
37
+ // Annotate the CommonJS export names for ESM import in node:
38
+ 0 && (module.exports = {
39
+ t
40
+ });
@@ -0,0 +1,2 @@
1
+ import * as typebox from '@sinclair/typebox';
2
+ export { typebox as t };
@@ -0,0 +1,2 @@
1
+ import * as typebox from '@sinclair/typebox';
2
+ export { typebox as t };
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ // src/index.ts
2
+ import * as t from "@sinclair/typebox";
3
+ export {
4
+ t
5
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@roastery/terroir",
3
3
  "description": "Layered exception hierarchy and runtime schema validation for the Roastery CMS ecosystem",
4
- "version": "0.0.3",
4
+ "version": "0.0.5",
5
5
  "type": "module",
6
6
  "author": {
7
7
  "name": "Alan Reis",
@@ -16,6 +16,14 @@
16
16
  "main": "./dist/index.cjs",
17
17
  "module": "./dist/index.js",
18
18
  "types": "./dist/index.d.ts",
19
+ "keywords": [
20
+ "hoyasumii",
21
+ "roastery",
22
+ "@roastery",
23
+ "terroir",
24
+ "@roastery/terroir",
25
+ "roastery-terroir"
26
+ ],
19
27
  "typesVersions": {
20
28
  "*": {
21
29
  "*": [
@@ -39,7 +47,7 @@
39
47
  "dist"
40
48
  ],
41
49
  "scripts": {
42
- "build": "tsup 'src/**/index.ts' --format cjs,esm --dts --tsconfig tsconfig.build.json --clean",
50
+ "build": "biome check --fix && tsup 'src/**/index.ts' --format cjs,esm --dts --tsconfig tsconfig.build.json --clean",
43
51
  "test:unit": "bun test --env-file=.env.testing",
44
52
  "test:coverage": "bun test --env-file=.env.testing --coverage",
45
53
  "setup": "bun run build && bun link",
@@ -50,13 +58,13 @@
50
58
  "@commitlint/cli": "^20.4.1",
51
59
  "@commitlint/config-conventional": "^20.4.1",
52
60
  "husky": "^9.1.7",
53
- "knip": "^5.85.0",
54
- "tsup": "^8.5.1"
61
+ "knip": "^5.85.0"
55
62
  },
56
63
  "peerDependencies": {
57
64
  "typescript": "^5",
58
65
  "@sinclair/typebox": ">= 0.34.0 < 1",
59
66
  "@types/bun": "latest",
67
+ "tsup": "^8.5.1",
60
68
  "uuid": "^13.0.0"
61
69
  },
62
70
  "dependencies": {}