-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.65 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
{
"name": "datocms-plugin-dropdown-conditional-fields-v2",
"homepage": "https://github.com/appbisweb/datocms-plugin-dropdown-conditional-fields_version_2",
"version": "2.0.5",
"description": "Conditionally show or hide fields based on a dropdown selection. Visual rule editor included — no JSON required.",
"main": "dist/index.html",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"datocms-plugin",
"datocms",
"field-addon",
"conditional-fields",
"dropdown"
],
"files": [
"dist",
"docs"
],
"author": {
"name": "Jan Luther",
"url": "https://app-bis-web.de"
},
"license": "ISC",
"datoCmsPlugin": {
"title": "Dropdown Conditional Fields v2",
"previewImage": "docs/demo.mp4",
"coverImage": "docs/cover.png",
"entryPoint": "dist/index.html",
"permissions": [
"currentUserAccessToken"
]
},
"dependencies": {
"datocms-plugin-sdk": "^2.1.1",
"datocms-react-ui": "^2.1.4",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^5.0.0",
"jsdom": "^29.0.1",
"typescript": "^5.9.3",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}