perlsky is a Perl 5 implementation of an AT Protocol Personal Data Server.
1use strict;
2use warnings;
3
4use ExtUtils::MakeMaker;
5
6WriteMakefile(
7 NAME => 'ATProto::PDS',
8 VERSION_FROM => 'lib/ATProto/PDS.pm',
9 ABSTRACT => 'Perl 5 implementation of an AT Protocol PDS',
10 AUTHOR => 'aliceisjustplaying',
11 EXE_FILES => ['script/perlsky', 'script/perlsky-admin'],
12 PREREQ_PM => {
13 'CBOR::XS' => '1.87',
14 'Crypt::PK::Ed25519' => '0',
15 'DBD::SQLite' => '1.64',
16 'DBI' => '1.643',
17 'IO::Socket::SSL' => '2.009',
18 'Mojolicious' => '9.42',
19 'Test::Deep' => '1.204',
20 'Test2::V0' => '0.000162',
21 },
22);