-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.02 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
{
"name": "onemeta",
"version": "1.0.0",
"description": "Build powerful custom fields with a visual builder. Export as PHP code or use directly in WordPress.",
"author": "Faruk Ahmed",
"license": "GPL-2.0-or-later",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"watch": "vite build --watch",
"pot": "wp i18n make-pot . languages/onemeta.pot --domain=onemeta",
"package": "npm run build && npm run pot && rm -rf package/onemeta && rm -f package/onemeta.zip && mkdir -p package/onemeta && rsync -av --exclude-from='.distignore' . package/onemeta && cd package && zip -r onemeta.zip onemeta && rm -rf onemeta && echo '✅ package/onemeta.zip ready!'"
},
"keywords": [
"wordpress",
"custom-fields",
"meta-fields",
"acf-alternative",
"php",
"wordpress-plugin",
"repeater",
"conditional-logic",
"vite",
"field-builder"
],
"devDependencies": {
"sass": "^1.94.2",
"terser": "^5.44.1",
"vite": "^5.0.0"
}
}