Installation
To install dity, add it to your dependencies:
bash
npm install @hypersphere/dity
It does NOT require any additional dependencies but it requires decorators to be enabled:
typescript
{
"compilerOptions": {
/* All other compiler options */
"experimentalDecorators": true
}
}