@checkstack/about-common 0.2.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/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
1
+ # @checkstack/about-common
2
+
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3589199: Add About page with platform information, license, contact details, and version information
8
+
9
+ - New `about-common` package with plugin metadata
10
+ - New `about-frontend` package with the About page and user menu item
11
+ - New `/api/about` backend endpoint exposing core version and loaded plugin versions
12
+ - Accessible via "About Checkstack" in the user menu dropdown
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "@checkstack/about-common",
3
+ "version": "0.2.0",
4
+ "type": "module",
5
+ "exports": {
6
+ ".": {
7
+ "types": "./src/index.ts",
8
+ "import": "./src/index.ts"
9
+ }
10
+ },
11
+ "dependencies": {
12
+ "@checkstack/common": "0.6.4"
13
+ },
14
+ "devDependencies": {
15
+ "@checkstack/tsconfig": "0.0.4",
16
+ "@checkstack/scripts": "0.1.2",
17
+ "typescript": "^5.7.2"
18
+ },
19
+ "scripts": {
20
+ "typecheck": "tsc --noEmit",
21
+ "lint": "bun run lint:code",
22
+ "lint:code": "eslint . --max-warnings 0"
23
+ },
24
+ "checkstack": {
25
+ "type": "common"
26
+ }
27
+ }
package/src/index.ts ADDED
@@ -0,0 +1 @@
1
+ export { pluginMetadata } from "./plugin-metadata";
@@ -0,0 +1,5 @@
1
+ import { definePluginMetadata } from "@checkstack/common";
2
+
3
+ export const pluginMetadata = definePluginMetadata({
4
+ pluginId: "about",
5
+ });
package/tsconfig.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "extends": "@checkstack/tsconfig/common.json",
3
+ "include": [
4
+ "src"
5
+ ]
6
+ }