@aigamo/catalog 0.0.1-alpha.72

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 +32 -0
  2. package/catalog.json +64 -0
  3. package/package.json +29 -0
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # @aigamo/catalog
2
+
3
+ The shared [pnpm catalog](https://pnpm.io/catalogs) for `@aigamo` projects.
4
+
5
+ `catalog.json` is **generated** from
6
+ [`frontend/pnpm-workspace.yaml`](../../pnpm-workspace.yaml) — that workspace file
7
+ is the single source of truth. This package just snapshots the catalog so other
8
+ repositories can consume the same dependency versions.
9
+
10
+ ## Shape
11
+
12
+ ```jsonc
13
+ {
14
+ "catalog": { "react": "^18.3.1", "vite": "^8.3.0", /* ... */ },
15
+ "catalogs": { /* named catalogs, if any */ }
16
+ }
17
+ ```
18
+
19
+ ## Consuming it
20
+
21
+ Add it as a dev dependency and read `@aigamo/catalog/catalog.json` in a sync
22
+ script that writes the `catalog:` block of your own `pnpm-workspace.yaml`
23
+ (merging any project-specific entries on top). See the consuming repo's
24
+ `scripts/sync-catalog.mjs`.
25
+
26
+ ## Regenerating locally
27
+
28
+ ```bash
29
+ pnpm --filter @aigamo/catalog build
30
+ ```
31
+
32
+ Runs automatically on `prepack`, so a publish always ships the current catalog.
package/catalog.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "catalog": {
3
+ "@elastic/datemath": "^5.0.3",
4
+ "@elastic/eui": "^113.3.0",
5
+ "@emotion/cache": "^11.14.0",
6
+ "@emotion/css": "^11.13.5",
7
+ "@emotion/react": "^11.14.0",
8
+ "@eslint/compat": "^2.1.1",
9
+ "@eslint/eslintrc": "^3.3.7",
10
+ "@fluentui/react-icons": "^2.0.341",
11
+ "@tanstack/react-router": "^1.170.38",
12
+ "@tanstack/react-router-devtools": "^1.167.2",
13
+ "@tanstack/router-plugin": "^1.168.40",
14
+ "@trivago/prettier-plugin-sort-imports": "^6.0.2",
15
+ "@types/lodash-es": "^4.17.12",
16
+ "@types/node": "^26.6.1",
17
+ "@types/nprogress": "^0.2.3",
18
+ "@types/qs": "^6.15.1",
19
+ "@types/react": "^18.3.31",
20
+ "@types/react-dom": "^18.3.7",
21
+ "@typescript-eslint/eslint-plugin": "^8.70.0",
22
+ "@typescript-eslint/parser": "^8.70.0",
23
+ "@typescript/typescript6": "^6.0.2",
24
+ "@vite-pwa/assets-generator": "^2.0.0",
25
+ "@vitejs/plugin-react": "^6.1.1",
26
+ "ajv": "^8.20.0",
27
+ "eslint": "^10.10.0",
28
+ "eslint-config-prettier": "^10.1.8",
29
+ "eslint-config-react-app": "^7.0.1",
30
+ "eslint-import-resolver-typescript": "^4.4.5",
31
+ "eslint-plugin-boundaries": "^7.2.0",
32
+ "eslint-plugin-flowtype": "^8.0.3",
33
+ "eslint-plugin-import": "^2.32.0",
34
+ "eslint-plugin-jsx-a11y": "^6.10.2",
35
+ "eslint-plugin-prettier": "^5.5.6",
36
+ "eslint-plugin-react": "^7.37.5",
37
+ "eslint-plugin-react-hooks": "^7.1.1",
38
+ "jsdom": "^30.1.0",
39
+ "lodash-es": "^4.18.1",
40
+ "mobx": "^6.16.1",
41
+ "mobx-react-lite": "^4.1.1",
42
+ "moment": "^2.31.0",
43
+ "nprogress": "^0.2.0",
44
+ "prettier": "^3.9.8",
45
+ "prop-types": "^15.8.1",
46
+ "qs": "^6.16.0",
47
+ "react": "^18.3.1",
48
+ "react-dom": "^18.3.1",
49
+ "react-router-dom": "^7.18.4",
50
+ "react-sortablejs": "^6.1.4",
51
+ "rimraf": "^6.1.3",
52
+ "sortablejs": "^1.15.7",
53
+ "typescript": "^7.0.2",
54
+ "utility-types": "^3.11.0",
55
+ "vite": "^8.3.0",
56
+ "vite-plugin-dts": "^5.1.0",
57
+ "vite-plugin-externalize-deps": "^0.10.0",
58
+ "vite-plugin-pwa": "^1.3.0",
59
+ "vitest": "^5.0.1",
60
+ "workbox-core": "^7.4.1",
61
+ "workbox-precaching": "^7.4.1",
62
+ "workbox-routing": "^7.4.1"
63
+ }
64
+ }
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@aigamo/catalog",
3
+ "version": "0.0.1-alpha.72",
4
+ "type": "module",
5
+ "description": "Shared pnpm catalog for @aigamo projects, generated from hydrangean-diva's pnpm-workspace.yaml.",
6
+ "scripts": {
7
+ "build": "node build.mjs",
8
+ "prepack": "node build.mjs"
9
+ },
10
+ "files": [
11
+ "catalog.json"
12
+ ],
13
+ "exports": {
14
+ ".": "./catalog.json",
15
+ "./catalog.json": "./catalog.json"
16
+ },
17
+ "devDependencies": {
18
+ "yaml": "^2.5.0"
19
+ },
20
+ "license": "MIT",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/ycanardeau/hydrangean-diva.git"
24
+ },
25
+ "author": "Aigamo <51428094+ycanardeau@users.noreply.github.com>",
26
+ "publishConfig": {
27
+ "access": "public"
28
+ }
29
+ }