@prometheus-ags/prometheus-entity-management 1.0.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 ADDED
@@ -0,0 +1,92 @@
1
+ {
2
+ "name": "@prometheus-ags/prometheus-entity-management",
3
+ "version": "1.0.0",
4
+ "description": "Normalized, globally-reactive entity graph store for React — replaces TanStack Query's per-view cache model with a single application-wide entity graph built on Zustand.",
5
+ "author": "Travis James <travis@prometheus.dev>",
6
+ "license": "MIT",
7
+ "main": "./dist/index.js",
8
+ "module": "./dist/index.mjs",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.mjs",
14
+ "require": "./dist/index.js"
15
+ }
16
+ },
17
+ "publishConfig": {
18
+ "access": "public"
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md",
23
+ "CHANGELOG.md"
24
+ ],
25
+ "sideEffects": false,
26
+ "workspaces": [
27
+ "examples/vite-app",
28
+ "examples/nextjs-app"
29
+ ],
30
+ "peerDependencies": {
31
+ "react": ">=18.0.0",
32
+ "react-dom": ">=18.0.0",
33
+ "@tanstack/react-table": ">=8.0.0"
34
+ },
35
+ "peerDependenciesMeta": {
36
+ "@tanstack/react-table": {
37
+ "optional": true
38
+ }
39
+ },
40
+ "dependencies": {
41
+ "clsx": "^2.1.1",
42
+ "immer": "^11.1.4",
43
+ "lucide-react": "^1.7.0",
44
+ "tailwind-merge": "^3.5.0",
45
+ "zustand": "^5.0.12"
46
+ },
47
+ "devDependencies": {
48
+ "@types/react": "^19.2.14",
49
+ "@types/react-dom": "^19.2.3",
50
+ "tsup": "^8.5.1",
51
+ "typescript": "^6.0.2",
52
+ "vitest": "^3.2.4"
53
+ },
54
+ "keywords": [
55
+ "react",
56
+ "state-management",
57
+ "entity-graph",
58
+ "normalized-cache",
59
+ "zustand",
60
+ "realtime",
61
+ "tanstack-query-alternative",
62
+ "graphql",
63
+ "supabase",
64
+ "electricsql",
65
+ "pglite",
66
+ "local-first"
67
+ ],
68
+ "repository": {
69
+ "type": "git",
70
+ "url": "https://github.com/prometheus-ags/prometheus-entity-management"
71
+ },
72
+ "bugs": {
73
+ "url": "https://github.com/prometheus-ags/prometheus-entity-management/issues"
74
+ },
75
+ "homepage": "https://github.com/prometheus-ags/prometheus-entity-management#readme",
76
+ "scripts": {
77
+ "build": "tsup",
78
+ "build:watch": "tsup --watch",
79
+ "test": "vitest run",
80
+ "test:watch": "vitest",
81
+ "refresh:exports": "pnpm run build && node scripts/refresh-exports-ledger.mjs",
82
+ "verify:skills": "node scripts/verify-skills-exports.mjs",
83
+ "dev:vite": "pnpm --filter prometheus-entity-management-vite dev",
84
+ "dev:next": "pnpm --filter prometheus-entity-management-nextjs dev",
85
+ "build:vite": "pnpm --filter prometheus-entity-management-vite build",
86
+ "build:next": "pnpm --filter prometheus-entity-management-nextjs build",
87
+ "typecheck": "tsc --noEmit -p tsconfig.json",
88
+ "typecheck:vite": "tsc --noEmit -p examples/vite-app/tsconfig.json",
89
+ "typecheck:next": "tsc --noEmit -p examples/nextjs-app/tsconfig.json",
90
+ "clean": "find . -name 'node_modules' -type d -not -path '*/\\.*' | xargs rm -rf && find . -name 'dist' -o -name '.next' | xargs rm -rf"
91
+ }
92
+ }