@octalmesh/seagull 0.0.2 → 0.1.1

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.mjs CHANGED
@@ -1,2 +1,4 @@
1
- import { A as runSync, C as renderArtifactTag, D as resolveConfigPath, E as resolveBinPath, M as tagExists, O as resolveVersion, S as remoteBranchExists, T as requireOk, _ as OpenApiTypescriptGenerator, a as generateSdkCommand, b as loadConfig, c as publishSdkCommand, d as serveDocsSite, f as CONFIG_FILENAMES, g as OpenApiGeneratorCli, h as GeneratorRegistry, i as generateDocsCommand, j as syncRedoclyConfig, k as run, l as serveDocsCommand, m as Generator, n as cleanCommand, o as lintCommand, p as CONFIG_SCHEMA_VERSION, r as createProgram, s as publishRegistriesCommand, t as bundleCommand, u as generateDocsSite, v as git, w as renderReadme, x as readFileAtTag, y as hashSpec } from "./dist-Ou2inxGj.mjs";
2
- export { CONFIG_FILENAMES, CONFIG_SCHEMA_VERSION, Generator, GeneratorRegistry, OpenApiGeneratorCli, OpenApiTypescriptGenerator, bundleCommand, cleanCommand, createProgram, generateDocsCommand, generateDocsSite, generateSdkCommand, git, hashSpec, lintCommand, loadConfig, publishRegistriesCommand, publishSdkCommand, readFileAtTag, remoteBranchExists, renderArtifactTag, renderReadme, requireOk, resolveBinPath, resolveConfigPath, resolveVersion, run, runSync, serveDocsCommand, serveDocsSite, syncRedoclyConfig, tagExists };
1
+ export * from "@octalmesh/seagull-cli";
2
+ export * from "@octalmesh/seagull-core";
3
+ export * from "@octalmesh/seagull-docs";
4
+ export {};
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@octalmesh/seagull",
3
- "version": "0.0.2",
3
+ "version": "0.1.1",
4
4
  "description": "Contract-first OpenAPI SDK, docs, and publishing pipeline - driven by a single seagull config.",
5
5
  "author": "OctalMesh <contact@octalmesh.com> (https://octalmesh.com)",
6
6
  "license": "MIT",
7
- "homepage": "https://github.com/OctalMesh/Seagull",
7
+ "homepage": "https://developers.octalmesh.com/seagull",
8
8
  "type": "module",
9
9
  "keywords": [
10
10
  "octalmesh",
@@ -49,23 +49,20 @@
49
49
  "devEngines": {
50
50
  "runtime": {
51
51
  "name": "node",
52
- "version": "^22.22.0",
52
+ "version": "^22.22.0 || ^24.0.0",
53
53
  "onFail": "warn"
54
54
  }
55
55
  },
56
56
  "dependencies": {
57
- "@octalmesh/seagull-cli": "0.0.2",
58
- "@octalmesh/seagull-core": "0.0.2",
59
- "@octalmesh/seagull-docs": "0.0.2",
60
- "@openapitools/openapi-generator-cli": "^2.41.0",
61
- "@redocly/cli": "^2.51.2",
62
- "@scalar/api-reference": "^1.67.0",
63
- "openapi-typescript": "^7.13.0"
57
+ "@octalmesh/seagull-cli": "0.1.1",
58
+ "@octalmesh/seagull-core": "0.1.1",
59
+ "@octalmesh/seagull-docs": "0.1.1"
64
60
  },
65
61
  "devDependencies": {
66
- "@changesets/cli": "^2.29.7",
62
+ "@changesets/cli": "^3.0.2",
67
63
  "@trivago/prettier-plugin-sort-imports": "^6.0.2",
68
- "@types/node": "^26.4.0",
64
+ "@types/node": "^26.5.1",
65
+ "@vitest/coverage-v8": "^5.0.0",
69
66
  "@vitest/ui": "^5.0.0",
70
67
  "eslint": "^10.10.0",
71
68
  "eslint-config-prettier": "^10.1.8",
@@ -73,27 +70,41 @@
73
70
  "prettier": "^3.9.6",
74
71
  "prettier-plugin-yaml": "^1.3.0",
75
72
  "tree-node-cli": "^3.0.0",
76
- "tsdown": "0.22.14",
73
+ "tsdown": "0.23.0",
77
74
  "typescript": "^6.0.2",
78
75
  "typescript-eslint": "^8.69.0",
76
+ "vite": "^8.3.0",
79
77
  "vitest": "^5.0.0"
80
78
  },
81
79
  "scripts": {
82
80
  "build": "pnpm --filter \"./packages/**\" run build && tsdown",
83
81
  "dev": "pnpm --filter \"./packages/**\" --parallel run dev",
84
82
  "typecheck": "pnpm --filter \"./packages/**\" run typecheck && tsc --noEmit",
85
- "test": "vitest",
86
- "test:run": "vitest run --passWithNoTests",
87
- "test:watch": "vitest watch",
88
- "test:ui": "vitest --ui",
89
83
  "lint": "eslint .",
90
84
  "lint:fix": "eslint . --fix",
85
+ "test": "pnpm run build && vitest run",
86
+ "test:watch": "pnpm run test:unit:watch",
87
+ "test:ui": "pnpm build && vitest --ui",
88
+ "test:coverage": "vitest run --project=\"unit:*\" --coverage",
89
+ "test:report": "vitest run --reporter=html",
90
+ "test:preview": "vite preview --outDir .vitest",
91
+ "test:unit": "vitest run --project=\"unit:*\"",
92
+ "test:unit:watch": "vitest --project=\"unit:*\"",
93
+ "test:unit:ui": "vitest --project=\"unit:*\" --ui",
94
+ "test:e2e": "pnpm build && vitest run --project=e2e",
95
+ "test:e2e:ui": "pnpm build && vitest --ui --project=e2e",
91
96
  "format": "prettier . --write",
92
97
  "format:check": "prettier . --check",
93
- "changeset": "changeset",
94
- "version": "changeset version",
95
- "release": "pnpm publish",
98
+ "deps": "pnpm update --latest --recursive --interactive",
99
+ "deps:check": "pnpm outdated --recursive",
96
100
  "tree": "treee -I \"node_modules|.git|.idea|target|build|dist|dev-dist|bin|.project-structure.txt\" -a --dirs-first",
97
- "tree:export": "pnpm run tree --silent > .project-structure.txt"
101
+ "tree:export": "pnpm run tree --silent > .project-structure.txt",
102
+ "changeset": "changeset add",
103
+ "changeset:status": "changeset status --verbose --since=dev",
104
+ "changeset:empty": "changeset add --empty",
105
+ "version": "changeset version && pnpm install --no-frozen-lockfile --lockfile-only",
106
+ "release": "pnpm run build && pnpm run test:run && pnpm run release:publish",
107
+ "release:dry": "pnpm -r publish --no-git-checks --provenance --dry-run",
108
+ "release:publish": "pnpm -r publish --no-git-checks --provenance"
98
109
  }
99
110
  }