-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.64 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@rubixstudios/payload-typesense",
"version": "1.0.7",
"description": "A production-ready search plugin that integrates Typesense with Payload CMS, offering fast, typo-tolerant search with real-time synchronization. This fork by Rubix Studios reduces bloat and introduces targeted changes for improved performance, maintainability, and flexibility.",
"license": "MIT",
"author": "Rubix Studios <hello@rubixstudios.com.au> (https://rubixstudios.com.au)",
"homepage": "https://rubixstudios.com.au",
"repository": {
"type": "git",
"url": "git+https://github.com/rubix-studios-pty-ltd/payload-typesense.git"
},
"bugs": {
"url": "https://github.com/rubix-studios-pty-ltd/payload-typesense/issues"
},
"maintainers": [
{
"name": "Rubix Studios",
"email": "hello@rubixstudios.com.au",
"url": "https://rubixstudios.com.au"
}
],
"type": "module",
"keywords": [
"payload",
"payloadcms",
"typesense",
"search",
"plugin",
"cms",
"headless",
"typescript",
"react",
"nextjs"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "pnpm build:types && pnpm build:swc",
"build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths",
"build:types": "tsc -p tsconfig.json",
"clean": "rimraf -g {dist,*.tsbuildinfo} && pnpm exec biome check --write && pnpm biome migrate --write",
"update": "pnpm update --latest && pnpm install && pnpm prune && pnpm dedupe && pnpm run clean",
"release": "semantic-release"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@payloadcms/eslint-config": "^3.28.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.32",
"@types/react": "19.2.14",
"payload": "^3.84.1",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.3",
"typescript": "^6.0.3"
},
"peerDependencies": {
"payload": "^3.84.1"
},
"engines": {
"node": ">=24",
"pnpm": ">=10"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"dependencies": {
"typesense": "^3.0.6",
"zod": "^4.3.6"
},
"packageManager": "pnpm@10.33.2"
}