15 lines
574 B
JSON
15 lines
574 B
JSON
{
|
|
"name": "bulwark-plugin-manage-users",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "esbuild src/index.js --bundle --format=cjs --platform=browser --charset=utf8 --outfile=dist/index.js --external:react --external:react-dom --external:react-dom/client --external:react/jsx-runtime --external:@plugin-host",
|
|
"dev": "npm run build -- --watch",
|
|
"package": "npm run build && cp manifest.json dist/ && cd dist && zip -X ../manage-users.zip manifest.json index.js"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.24.0"
|
|
}
|
|
}
|