jellyfin/apiclient/templates/typescript/axios/package.mustache

31 lines
692 B
Plaintext
Raw Normal View History

2020-09-06 07:32:21 +02:00
{
"name": "@jellyfin/client-axios",
2020-09-06 07:32:21 +02:00
"version": "10.7.0{{snapshotVersion}}",
"description": "Jellyfin api client using axios",
2020-09-06 07:32:21 +02:00
"author": "Jellyfin Contributors",
"keywords": [
"axios",
2020-09-06 07:32:21 +02:00
"typescript",
"jellyfin"
],
"license": "GPL-3.0-only",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc --outDir dist/",
"prepublishOnly": "npm run build"
},
"dependencies": {
"axios": "^0.19.2"
},
"devDependencies": {
"@types/node": "^12.11.5",
"typescript": "^3.6.4"
}{{#npmRepository}},{{/npmRepository}}
{{#npmRepository}}
"publishConfig": {
"registry": "{{npmRepository}}"
}
{{/npmRepository}}
}