-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.3 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.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
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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "openfields",
"version": "0.4.2",
"type": "module",
"description": "Modern custom fields builder for WordPress. Create and manage custom field groups with an intuitive interface.",
"author": "Codeideal",
"license": "GPL-2.0-or-later",
"packageManager": "pnpm@10.24.0",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"build:plugin": "bash scripts/build.sh",
"build:plugin:release": "bash scripts/build.sh release",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint": "eslint admin/src --ext .ts,.tsx",
"lint:fix": "eslint admin/src --ext .ts,.tsx --fix",
"format": "prettier --write \"admin/src/**/*.{ts,tsx,css}\"",
"test": "vitest",
"test:ui": "vitest --ui",
"i18n:pot": "bash scripts/i18n-pot.sh",
"i18n:audit": "tsx scripts/i18n-audit.ts",
"i18n:audit:strict": "tsx scripts/i18n-audit.ts --strict",
"release": "tsx scripts/release.ts",
"release:svn": "tsx scripts/release.ts --svn",
"release:github": "tsx scripts/release.ts --github",
"release:all": "tsx scripts/release.ts --all",
"release:dry": "tsx scripts/release.ts --dry --all",
"wp-env": "wp-env",
"wp-env:start": "wp-env start",
"wp-env:stop": "wp-env stop",
"wp-env:destroy": "wp-env destroy"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.0",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.1.0",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.0",
"@radix-ui/react-tooltip": "^1.1.0",
"@tanstack/react-query": "^5.60.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^1.1.1",
"lucide-react": "^0.460.0",
"next-themes": "^0.4.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "^2.0.7",
"tailwind-merge": "^2.5.0",
"vaul": "^1.1.2",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/prompts": "^2.4.9",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/ui": "^2.1.0",
"@wordpress/env": "^10.0.0",
"@wordpress/i18n": "^6.13.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"picocolors": "^1.1.1",
"postcss": "^8.4.49",
"prettier": "^3.4.0",
"prompts": "^2.4.2",
"tailwindcss": "^3.4.15",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^2.1.0"
},
"keywords": [
"wordpress",
"plugin",
"custom-fields",
"acf",
"metabox",
"field-builder",
"react",
"typescript"
]
}