Where is npm run dtos

Looking through the docs I came accross npm run dtos but somehow I cannot seem to find this package.
For example at https://github.com/NetCoreTemplates/vue-nuxt/blob/master/MyApp/gulpfile.js#L4 there is a reference to it.
I tried to install the @servicestack/cli but that does not include the dtos script.

It’s not a package, it’s just an npm script inside your package.json:

"dtos": "cd src/shared && typescript-ref && tsc -m ES6 dtos.ts",
1 Like