wordpress-plugin
Version:
Boilerplate WordPress Plugin structure to support development of JavaScript frameworks: React, Vue, Vanilla, TypeScript, supporting Vite, NextJS, Nuxt, Gatsby, and JSX/TSX Components (like MUI), CSS (like Tailwind + Unity), data APIs (like REST and GraphQ
55 lines (54 loc) • 1.61 kB
JSON
{
"name": "wordpress-plugin",
"version": "0.1.8-alpha",
"description": "Boilerplate WordPress Plugin structure to support development of JavaScript frameworks: React, Vue, Vanilla, TypeScript, supporting Vite, NextJS, Nuxt, Gatsby, and JSX/TSX Components (like MUI), CSS (like Tailwind + Unity), data APIs (like REST and GraphQL). Supports TypeScript TSC, ESLint + Prettier code definitions and formatting standards. Builds are handled primarily by Vite + Webpack.",
"main": "index.js",
"scripts": {
"dev": "vite --port 7777",
"build": "vite build",
"preview": "vite preview --port 7777",
"test": "tsc",
"generic": "cross-env echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marty-mcgee/wordpress-plugin.git"
},
"author": "Marty McGee",
"license": "MIT",
"bugs": {
"url": "https://github.com/marty-mcgee/wordpress-plugin/issues"
},
"homepage": "https://github.com/marty-mcgee/wordpress-plugin#readme",
"dependencies": {
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"pnpm": "^7.11.0",
"prettier": "^2.7.1",
"typescript": "^4.8.3",
"vite": "^3.1.0",
"webpack": "^5.74.0"
},
"optionalDependencies": {
"lit": "2.3.1",
"preact": "10.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svelte": "3.50.1",
"vue": "^3.2.39"
},
"keywords": [
"wordpress",
"wordpress-plugin",
"javascript",
"typescript",
"react",
"vue",
"vite",
"tsx",
"jsx",
"mui"
]
}