@grapity/grapity 0.2.0 → 0.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grapity/grapity",
3
- "version": "0.2.0",
3
+ "version": "0.4.0",
4
4
  "type": "module",
5
5
  "description": "grapity - API spec registry and compatibility guardian",
6
6
  "license": "Apache-2.0",
@@ -59,10 +59,6 @@
59
59
  "typecheck": "tsc --noEmit",
60
60
  "test": "bun test",
61
61
  "generate": "bun run scripts/generate-types.ts",
62
- "db:generate:sqlite": "drizzle-kit generate --config drizzle/config.sqlite.ts",
63
- "db:generate:pg": "drizzle-kit generate --config drizzle/config.pg.ts",
64
- "db:migrate:sqlite": "drizzle-kit migrate --config drizzle/config.sqlite.ts",
65
- "db:migrate:pg": "drizzle-kit migrate --config drizzle/config.pg.ts",
66
62
  "prepublishOnly": "bun run build"
67
63
  },
68
64
  "publishConfig": {
@@ -70,26 +66,28 @@
70
66
  "provenance": true
71
67
  },
72
68
  "dependencies": {
73
- "commander": "^13.1.0",
74
- "js-yaml": "^4.1.0",
75
- "chalk": "^5.4.0",
76
- "ora": "^8.2.0",
69
+ "@apidevtools/swagger-parser": "^10.1.0",
77
70
  "@hono/node-server": "^2.0.4",
71
+ "better-sqlite3": "^12.10.0",
72
+ "chalk": "^5.4.0",
73
+ "commander": "^13.1.0",
74
+ "drizzle-orm": "^0.44.0",
78
75
  "hono": "^4.12.22",
76
+ "jose": "^6.2.3",
77
+ "js-yaml": "^4.1.0",
79
78
  "lucide-react": "^0.475.0",
79
+ "ora": "^8.2.0",
80
+ "pg": "^8.16.0",
80
81
  "react": "^19.0.0",
81
82
  "react-dom": "^19.0.0",
82
83
  "react-router-dom": "^7.4.0",
83
84
  "shiki": "^4.2.0",
84
- "drizzle-orm": "^0.44.0",
85
- "better-sqlite3": "^12.10.0",
86
- "pg": "^8.16.0",
87
- "@apidevtools/swagger-parser": "^10.1.0",
88
85
  "uuid": "^11.1.0",
89
86
  "zod": "^3.24.0"
90
87
  },
91
88
  "devDependencies": {
92
89
  "@tailwindcss/vite": "^4.3.0",
90
+ "@testcontainers/postgresql": "^11.14.0",
93
91
  "@testing-library/dom": "^10.4.0",
94
92
  "@testing-library/jest-dom": "^6.6.0",
95
93
  "@testing-library/react": "^16.2.0",
@@ -107,10 +105,10 @@
107
105
  "openapi-typescript": "^7.13.0",
108
106
  "postcss": "^8.5.3",
109
107
  "tailwindcss": "^4.0.0",
108
+ "testcontainers": "11.14.0",
110
109
  "tsup": "^8.4.0",
111
110
  "tsx": "^4.19.0",
112
111
  "typescript": "^5.8.0",
113
- "vite": "^6.3.0",
114
- "@testcontainers/postgresql": "^11.14.0"
112
+ "vite": "^6.3.0"
115
113
  }
116
114
  }