Creating your first AMM package¶
Now that you have your coding environment set up, it’s time to write some code.
First, let’s decide how to name a package.
For this example, we’ll go with name taminomara-amm-example
.
In the root of the hard drive, create a directory for the package (named same as the package).
In this example it’s taminomara-amm-example/
.
Inside, create a file called .ammpackage.json
with the following content
(replace package name and version with your own):
{
"name": "taminomara-amm-example",
"version": "0.0.0",
"requirements": {
"taminomara-amm-amm": "~0.1"
},
"devRequirements": {
"taminomara-amm-ammtest": "~0.1"
}
}