https://github.com/christophecvb/strapi-plugin-app-version
Strapi Plugin that displays the package.json version in the Strapi settings
https://github.com/christophecvb/strapi-plugin-app-version
plugin strapi strapi-plugin
Last synced: 6 months ago
JSON representation
Strapi Plugin that displays the package.json version in the Strapi settings
- Host: GitHub
- URL: https://github.com/christophecvb/strapi-plugin-app-version
- Owner: ChristopheCVB
- License: mit
- Created: 2025-06-11T11:12:40.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-09T01:38:55.000Z (11 months ago)
- Last Synced: 2025-08-09T16:49:26.344Z (11 months ago)
- Topics: plugin, strapi, strapi-plugin
- Language: TypeScript
- Homepage:
- Size: 773 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
---
A plugin for [Strapi Headless CMS](https://github.com/strapi/strapi) that displays your app version in the Strapi settings
## Features
- Display your app version in the Strapi settings
## Usage
To configure the **App Version** plugin, add your configuration to the plugin settings. The configuration consist of an object with the version:
```typescript
type Config = {
version: string
}
```
### Example Configuration
```typescript
// config/plugins.ts
import type { Config as AppVersionConfig } from 'strapi-plugin-app-version/dist/server/src/config'
import packageJson from '../package.json'
export default () => ({
'app-version': {
enabled: true,
config: {
version: packageJson.version,
} satisfies AppVersionConfig,
}
})
```