From a95c4bc3088d213ff27e8ccb4a95975ab0485e33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Tue, 29 Oct 2024 13:23:27 +0100 Subject: [PATCH] add .distignore and package.json --- .distignore | 34 ++++++++++++++++++++++++++++++++++ package.json | 26 ++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 .distignore create mode 100644 package.json diff --git a/.distignore b/.distignore new file mode 100644 index 0000000..36a7653 --- /dev/null +++ b/.distignore @@ -0,0 +1,34 @@ +.distignore +.git +.gitignore +.php_cs +.svnignore +.wordpress-org +.wp-env.json +_config.yml +_site +bin +CHANGELOG.md +CODE_OF_CONDUCT.md +composer.json +composer.lock +Dockerfile +docs +docker-compose-test.yml +docker-compose.yml +FEDERATION.md +Gruntfile.js +Makefile +node_modules +npm-debug.log +package-lock.json +package.json +phpcs.xml +phpunit.xml +phpunit.xml.dist +README.md +readme.md +SECURITY.md +src +tests +vendor \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..72106bc --- /dev/null +++ b/package.json @@ -0,0 +1,26 @@ + +{ + "name": "activitypub-event-bridge", + "version": "0.1.0", + "author": { + "name": "André Menrath", + "web": "https://graz.social/@linos" + }, + "scripts": { + "dev": "wp-scripts start", + "build": "wp-scripts build", + "readme": "grunt wp_readme_to_markdown", + "env-start": "wp-env start && wp-env run cli wp rewrite structure '/%year%/%monthnum%/%postname%/'", + "env-stop": "wp-env stop" + }, + "license": "AGPL-3.0", + "bugs": { + "url": "https://code.event-federation.eu/Event-Federation/wordpress-activitypub-event-bridge/issues" + }, + "devDependencies": { + "@wordpress/env": "^10.10.0", + "@wordpress/scripts": "^30.0.2", + "classnames": "^2.3.2", + "grunt-wp-readme-to-markdown": "^2.0.1" + } +} \ No newline at end of file