You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/apiclient/templates/typescript/package.mustache

31 lines
712 B

{
"name": "jellyfin-apiclient-{{npmName}}",
"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}}
}