jellyfin/apiclient/templates/typescript/package.mustache

31 lines
710 B
Text
Raw Normal View History

2020-09-06 07:32:21 +02:00
{
2020-10-02 15:19:18 +02:00
"name": "@jellyfin/client-{{npmName}}",
2020-09-06 07:32:21 +02:00
"version": "10.7.0{{snapshotVersion}}",
"description": "Jellyfin api client using {{npmName}}",
"author": "Jellyfin Contributors",
"keywords": [
"{{npmName}}",
"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}}
}