-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"name": "datocms-plugin-selective-search-for-link-field",
"description": "Allows you to limit the fields searched in a Link field. This helps with performance and prevents timeouts on larger datasets.",
"homepage": "https://github.com/arcataroger/selective-search-for-link-field",
"private": false,
"version": "0.1.0",
"author": "Roger Tuan (DatoCMS Support) <r.tuan@datocms.com>",
"type": "module",
"keywords": [
"datocms-plugin"
],
"datoCmsPlugin": {
"title": "Selective Search for Link Field",
"coverImage": "docs/cover-1200x800.png",
"previewImage": "docs/preview.mp4",
"entryPoint": "dist/index.html",
"permissions": [
"currentUserAccessToken"
]
},
"files": [
"dist",
"docs"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@datocms/cma-client-browser": "^5.3.0",
"datocms-plugin-sdk": "^2.1.1",
"datocms-react-ui": "^2.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-select": "^5.10.2"
},
"devDependencies": {
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.1.4",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1"
}
}