[SOLVED] Display my custom package in the Package folder of the project

Hello,

I created a custom package that I’m using for my own purpose, and I want to display it into the package folder of the project like some other existing custom packages (OpenVR XR in mind, that is a Github package):

6792224--787049--upload_2021-2-2_12-0-4.png

My project is on Github, I added it in the PackageManager with “+” > “Add package from Git url”. My package is correctly referenced but compiled as DLL and it is impossible to read the sources nor open the csharp files directly in my IDE.

Do you know how to achieve this ?

My package.json

{
  "name": "com.lignus.basetool",
  "version": "0.0.2",
  "displayName": "Base Tool",
  "description": "Le package pour d\u00e9marrer tes projets",
  "unity": "2020.2",
  "unityRelease": "1f1",
  "category": "Scripts",
  "keywords": [
    "tool",
    "starter",
    "game"
  ],
  "author": {
    "name": "Curtis Pelissier",
    "email": "**********",
    "url": "**********"
  },
  "type": "module",
  "hideInEditor": false
}

Ok, nevermind. I solved the problem by deleting the “type” from the manifest. If the “type” is set to “module”, it is automatically compiled and not shown in the folder.

Hope this will help someone one day !