Particle is not supported yet

Trying to compile lilygo t-display-s3 factory code. Compiles and loads fine using arduino IDE. Fails under Platformio with the following message:
“Library Manager: Could not parse manifest → Particle is not supported yet”

This is my platformio.ini:

[platformio]
globallib_dir = ../../lib
src_dir = .

[env:ESP32-S3-DevKitC-1]

lib_deps =
    https://github.com/mathertel/OneButton.git
    https://github.com/admarschoonen/TouchLib
    lvgl/lvgl

platform = espressif32
board = esp32-s3-devkitc-1
framework = arduino

build_flags = 
    -DLV_LVGL_H_INCLUDE_SIMPLE
    -DBOARD_HAS_PSRAM
    -DARDUINO_USB_MODE=1 
    -DARDUINO_USB_CDC_ON_BOOT=1 


board_build.partitions = default_8MB.csv
board_build.arduino.memory_type = qio_opi
board_build.flash_size = 8MB

Any help is much appreciated.
Have a nice one !