@typicalday/firegraph 0.4.0 → 0.6.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/README.md +114 -1
- package/dist/codegen/index.d.cts +1 -1
- package/dist/codegen/index.d.ts +1 -1
- package/dist/editor/client/assets/index-B1nKCPMa.js +411 -0
- package/dist/editor/client/assets/index-CJJR5qe5.css +1 -0
- package/dist/editor/client/index.html +2 -2
- package/dist/editor/server/index.mjs +1395 -346
- package/dist/{index-DR3jF5_b.d.cts → index-B9aodfYD.d.cts} +101 -1
- package/dist/{index-DR3jF5_b.d.ts → index-B9aodfYD.d.ts} +101 -1
- package/dist/index.cjs +794 -44
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +164 -4
- package/dist/index.d.ts +164 -4
- package/dist/index.js +776 -41
- package/dist/index.js.map +1 -1
- package/package.json +27 -24
- package/dist/editor/client/assets/index-DJJ_b0jI.js +0 -411
- package/dist/editor/client/assets/index-Q0QBYrMV.css +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typicalday/firegraph",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Generic Firestore adjacency graph client with smart query planning",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -56,6 +56,28 @@
|
|
|
56
56
|
"bin",
|
|
57
57
|
"skills"
|
|
58
58
|
],
|
|
59
|
+
"scripts": {
|
|
60
|
+
"prepare": "tsup && (npm run build:editor || true)",
|
|
61
|
+
"build": "tsup",
|
|
62
|
+
"build:editor:client": "cd editor && npx vite build",
|
|
63
|
+
"build:editor:server": "node editor/build-server.mjs",
|
|
64
|
+
"build:editor": "npm run build:editor:client && npm run build:editor:server",
|
|
65
|
+
"build:all": "npm run build && npm run build:editor",
|
|
66
|
+
"dev:editor": "cd editor && npm run dev",
|
|
67
|
+
"typecheck": "tsc --noEmit",
|
|
68
|
+
"test": "vitest run",
|
|
69
|
+
"test:unit": "vitest run tests/unit/",
|
|
70
|
+
"test:integration": "vitest run tests/integration/",
|
|
71
|
+
"test:emulator": "bash tests/scripts/test-with-emulator.sh",
|
|
72
|
+
"test:emulator:unit": "bash tests/scripts/test-with-emulator.sh tests/unit/",
|
|
73
|
+
"test:emulator:integration": "bash tests/scripts/test-with-emulator.sh tests/integration/",
|
|
74
|
+
"test:coverage": "vitest run --coverage",
|
|
75
|
+
"test:watch": "vitest",
|
|
76
|
+
"emulator:start": "cd tests/emulator && firebase emulators:start -P demo-firegraph",
|
|
77
|
+
"emulator:stop": "npx kill-port -y 4188 8188",
|
|
78
|
+
"test:pipeline": "vitest run tests/pipeline/ --config tests/pipeline/vitest.config.ts",
|
|
79
|
+
"test:pipeline:integration": "vitest run --config tests/integration-pipeline/vitest.config.ts"
|
|
80
|
+
},
|
|
59
81
|
"peerDependencies": {
|
|
60
82
|
"@google-cloud/firestore": "^8.0.0",
|
|
61
83
|
"react": "^18.0.0 || ^19.0.0",
|
|
@@ -77,7 +99,8 @@
|
|
|
77
99
|
"ajv": "^8.18.0",
|
|
78
100
|
"esbuild": "^0.24.0",
|
|
79
101
|
"jiti": "^2.4.0",
|
|
80
|
-
"nanoid": "^5.0.9"
|
|
102
|
+
"nanoid": "^5.0.9",
|
|
103
|
+
"ses": "^1.15.0"
|
|
81
104
|
},
|
|
82
105
|
"devDependencies": {
|
|
83
106
|
"@google-cloud/firestore": "^8.3.0",
|
|
@@ -98,25 +121,5 @@
|
|
|
98
121
|
"engines": {
|
|
99
122
|
"node": ">=18"
|
|
100
123
|
},
|
|
101
|
-
"
|
|
102
|
-
|
|
103
|
-
"build:editor:client": "cd editor && npx vite build",
|
|
104
|
-
"build:editor:server": "node editor/build-server.mjs",
|
|
105
|
-
"build:editor": "npm run build:editor:client && npm run build:editor:server",
|
|
106
|
-
"build:all": "npm run build && npm run build:editor",
|
|
107
|
-
"dev:editor": "cd editor && npm run dev",
|
|
108
|
-
"typecheck": "tsc --noEmit",
|
|
109
|
-
"test": "vitest run",
|
|
110
|
-
"test:unit": "vitest run tests/unit/",
|
|
111
|
-
"test:integration": "vitest run tests/integration/",
|
|
112
|
-
"test:emulator": "bash tests/scripts/test-with-emulator.sh",
|
|
113
|
-
"test:emulator:unit": "bash tests/scripts/test-with-emulator.sh tests/unit/",
|
|
114
|
-
"test:emulator:integration": "bash tests/scripts/test-with-emulator.sh tests/integration/",
|
|
115
|
-
"test:coverage": "vitest run --coverage",
|
|
116
|
-
"test:watch": "vitest",
|
|
117
|
-
"emulator:start": "cd tests/emulator && firebase emulators:start -P demo-firegraph",
|
|
118
|
-
"emulator:stop": "npx kill-port -y 4188 8188",
|
|
119
|
-
"test:pipeline": "vitest run tests/pipeline/ --config tests/pipeline/vitest.config.ts",
|
|
120
|
-
"test:pipeline:integration": "vitest run --config tests/integration-pipeline/vitest.config.ts"
|
|
121
|
-
}
|
|
122
|
-
}
|
|
124
|
+
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
|
|
125
|
+
}
|