next-openapi-gen 0.8.0 → 0.8.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.
Files changed (3) hide show
  1. package/README.md +15 -0
  2. package/dist/types.js +1 -0
  3. package/package.json +17 -3
package/README.md CHANGED
@@ -834,6 +834,21 @@ Visit `http://localhost:3000/api-docs` to see the generated documentation.
834
834
  - **[OpenAPI Specification](https://swagger.io/specification/)** - OpenAPI 3.0 spec
835
835
  - **[Scalar Documentation](https://docs.scalar.com/)** - Modern API documentation UI
836
836
 
837
+ ## Contributing
838
+
839
+ We welcome contributions! 🎉
840
+
841
+ Please read our [Contributing Guide](CONTRIBUTING.md) for details on:
842
+
843
+ - 📝 Commit message guidelines (Conventional Commits)
844
+ - 🔧 Development setup
845
+ - ✅ Pull request process
846
+ - 🚀 Release workflow
847
+
848
+ ## Changelog
849
+
850
+ See [CHANGELOG.md](CHANGELOG.md) for release history and changes.
851
+
837
852
  ## License
838
853
 
839
854
  MIT
package/dist/types.js CHANGED
@@ -1 +1,2 @@
1
1
  export {};
2
+ // Test feature
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-openapi-gen",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "Automatically generate OpenAPI 3.0 documentation from Next.js projects, with support for Zod schemas and TypeScript types.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -19,7 +19,9 @@
19
19
  "test": "vitest run",
20
20
  "test:watch": "vitest",
21
21
  "test:ui": "vitest --ui",
22
- "test:coverage": "vitest run --coverage"
22
+ "test:coverage": "vitest run --coverage",
23
+ "release": "np --no-cleanup --no-tests",
24
+ "version": "conventional-changelog -p angular -i CHANGELOG.md -s -n .changelogrc.cjs && git add CHANGELOG.md"
23
25
  },
24
26
  "repository": {
25
27
  "type": "git",
@@ -36,7 +38,8 @@
36
38
  "docs",
37
39
  "react",
38
40
  "scalar",
39
- "redoc"
41
+ "redoc",
42
+ "drizzle"
40
43
  ],
41
44
  "publishConfig": {
42
45
  "access": "public"
@@ -57,7 +60,18 @@
57
60
  "devDependencies": {
58
61
  "@types/node": "^24.3.0",
59
62
  "@vitest/ui": "^3.2.4",
63
+ "conventional-changelog-cli": "^5.0.0",
64
+ "np": "^10.2.0",
60
65
  "typescript": "^5.9.2",
61
66
  "vitest": "^3.2.4"
67
+ },
68
+ "np": {
69
+ "yarn": false,
70
+ "anyBranch": false,
71
+ "branch": "main",
72
+ "cleanup": false,
73
+ "tests": false,
74
+ "2fa": false,
75
+ "releaseDraft": false
62
76
  }
63
77
  }