@nexo-labs/payload-typesense 1.6.1 → 1.6.2
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/dist/index.d.mts +1013 -1866
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -32
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexo-labs/payload-typesense",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "A powerful, production-ready search plugin that integrates Typesense with Payload CMS, providing lightning-fast, typo-tolerant search capabilities with real-time synchronization and a comprehensive theme system.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -69,11 +69,12 @@
|
|
|
69
69
|
],
|
|
70
70
|
"repository": {
|
|
71
71
|
"type": "git",
|
|
72
|
-
"url": "git+https://github.com/
|
|
72
|
+
"url": "git+https://github.com/Nexo-Labs/PayloadCMS-Keycloak-MultiTenancy-Base.git",
|
|
73
|
+
"directory": "packages/payload-typesense"
|
|
73
74
|
},
|
|
74
|
-
"homepage": "https://github.com/
|
|
75
|
+
"homepage": "https://github.com/Nexo-Labs/PayloadCMS-Keycloak-MultiTenancy-Base/tree/main/packages/payload-typesense#readme",
|
|
75
76
|
"bugs": {
|
|
76
|
-
"url": "https://github.com/
|
|
77
|
+
"url": "https://github.com/Nexo-Labs/PayloadCMS-Keycloak-MultiTenancy-Base/issues"
|
|
77
78
|
},
|
|
78
79
|
"author": {
|
|
79
80
|
"name": "Front Tribe",
|
|
@@ -90,40 +91,14 @@
|
|
|
90
91
|
"openai": "^4.104.0",
|
|
91
92
|
"typesense": "^2.1.0",
|
|
92
93
|
"zod": "^4.1.11",
|
|
93
|
-
"@nexo-labs/payload-indexer": "1.6.
|
|
94
|
+
"@nexo-labs/payload-indexer": "1.6.2"
|
|
94
95
|
},
|
|
95
96
|
"scripts": {
|
|
96
97
|
"build": "pnpm copyfiles && tsdown",
|
|
97
98
|
"dev": "tsdown --watch",
|
|
98
99
|
"clean": "rimraf -g {dist,*.tsbuildinfo}",
|
|
99
100
|
"copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,json}\" dist/ || true",
|
|
100
|
-
"dev:next": "next dev dev --turbo",
|
|
101
|
-
"dev:generate-importmap": "pnpm dev:payload generate:importmap",
|
|
102
|
-
"dev:generate-types": "cross-env PAYLOAD_CONFIG_PATH=./dev/payload.config.ts node --loader ./css-loader.mjs node_modules/payload/bin.js generate:types",
|
|
103
|
-
"dev:payload": "cross-env PAYLOAD_CONFIG_PATH=./dev/payload.config.ts node --loader ./css-loader.mjs node_modules/payload/bin.js",
|
|
104
|
-
"generate:importmap": "pnpm dev:generate-importmap",
|
|
105
|
-
"generate:types": "cross-env PAYLOAD_CONFIG_PATH=./dev/payload.config.ts node --loader ./css-loader.mjs node_modules/payload/bin.js generate:types",
|
|
106
101
|
"lint": "eslint ./src",
|
|
107
|
-
"lint:fix": "eslint ./src --fix"
|
|
108
|
-
"release": "semantic-release",
|
|
109
|
-
"release:dry-run": "semantic-release --dry-run",
|
|
110
|
-
"sync": "node scripts/sync-data.js",
|
|
111
|
-
"seed": "node scripts/seed-collections.js",
|
|
112
|
-
"test:seeder": "node scripts/test-seeder.js",
|
|
113
|
-
"test:updates": "node scripts/test-new-updates.js",
|
|
114
|
-
"test": "pnpm test:int",
|
|
115
|
-
"test:e2e": "playwright test",
|
|
116
|
-
"test:int": "vitest --exclude src/__tests__/integration.test.ts --exclude src/__tests__/plugin.test.ts --exclude src/__tests__/search.test.ts --exclude dev/e2e.spec.ts --exclude dev/int.spec.ts",
|
|
117
|
-
"test:unit": "vitest run src/__tests__ --exclude src/__tests__/plugin.test.ts --exclude src/__tests__/integration.test.ts --exclude src/__tests__/search.test.ts",
|
|
118
|
-
"test:watch": "vitest watch src/__tests__",
|
|
119
|
-
"docs:dev": "vitepress dev docs",
|
|
120
|
-
"docs:dev:open": "vitepress dev docs --open",
|
|
121
|
-
"docs:dev:auto": "vitepress dev docs --open",
|
|
122
|
-
"docs:build": "vitepress build docs",
|
|
123
|
-
"docs:preview": "vitepress preview docs",
|
|
124
|
-
"docs:serve": "vitepress serve docs",
|
|
125
|
-
"analyze": "pnpm build && npx bundle-analyzer dist/index.js",
|
|
126
|
-
"analyze:client": "pnpm build && npx bundle-analyzer dist/exports/client.js",
|
|
127
|
-
"analyze:rsc": "pnpm build && npx bundle-analyzer dist/exports/rsc.js"
|
|
102
|
+
"lint:fix": "eslint ./src --fix"
|
|
128
103
|
}
|
|
129
104
|
}
|