-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.21 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.21 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
{
"name": "themeplus",
"version": "1.0.0",
"description": "A modern theme options framework for WordPress",
"author": "Faruk Ahmed",
"license": "GPL-2.0-or-later",
"scripts": {
"dev": "vite",
"build": "vite build",
"blocks:start": "wp-scripts start",
"blocks:build": "wp-scripts build",
"pot": "wp i18n make-pot . languages/themeplus.pot --domain=themeplus --exclude=node_modules,vendor,build,assets,README",
"package": "npm run build && npm run pot && rm -rf package/themeplus && rm -f package/themeplus.zip && mkdir -p package/themeplus && rsync -av --exclude-from='.distignore' . package/themeplus && cd package && zip -r themeplus.zip themeplus && rm -rf themeplus && echo '✅ package/themeplus.zip ready!'"
},
"keywords": [
"wordpress",
"redux-alternative",
"options",
"framework",
"wordpress-plugin",
"php",
"vite"
],
"devDependencies": {
"@wordpress/scripts": "^27.0.0",
"vite": "^5.0.10",
"sass": "^1.69.5",
"terser": "^5.44.1"
},
"dependencies": {
"@wordpress/api-fetch": "^7.0.0",
"@wordpress/components": "^28.0.0",
"@wordpress/element": "^6.0.0",
"@wordpress/i18n": "^5.0.0",
"@wordpress/icons": "^10.0.0"
}
}