This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
lfk-client-node/package.json

46 lines
1.2 KiB
JSON

{
"name": "@odit/lfk-client-node",
"description": "A lib to interact with https://git.odit.services/lfk/backend. Use this version for NodeJS applications.",
"version": "1.1.3",
"license": "CC-BY-NC-SA-4.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://git.odit.services/lfk/lfk-client-node"
},
"keywords": [
"odit",
"odit.services",
"lfk"
],
"author": "ODIT.Services",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "npm run build:prepare && npm run build:lib && npm run build:compile && npm run build:cleanup",
"build:prepare": "rimraf ./lib ./dist",
"build:lib": "openapi --input ./openapi.json --output ./lib --client node",
"build:compile": "tsc",
"build:cleanup": "rimraf ./lib"
},
"bugs": {
"url": "https://git.odit.services/lfk/lfk-client-node/issues"
},
"homepage": "https://git.odit.services/lfk/lfk-client-node/",
"devDependencies": {
"@types/node": "^14.14.13",
"@types/node-fetch": "^2.5.7",
"openapi-typescript-codegen": "^0.7.0",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"dependencies": {
"form-data": "^3.0.0",
"node-fetch": "^2.6.1"
}
}