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
Raw Normal View History

2020-12-13 08:50:28 +00:00
{
2020-12-22 14:22:57 +00:00
"name": "@odit/lfk-client-node",
"description": "A lib to interact with https://git.odit.services/lfk/backend. Use this version for NodeJS applications.",
2023-05-10 11:39:59 +00:00
"version": "1.1.3",
2020-12-13 08:50:28 +00:00
"license": "CC-BY-NC-SA-4.0",
2020-12-13 18:17:10 +00:00
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
2020-12-13 08:50:28 +00:00
"repository": {
"type": "git",
2020-12-22 14:42:37 +00:00
"url": "git+https://git.odit.services/lfk/lfk-client-node"
2020-12-13 08:50:28 +00:00
},
"keywords": [
"odit",
"odit.services",
"lfk"
],
"author": "ODIT.Services",
"files": [
2023-02-02 15:14:40 +00:00
"dist",
2020-12-13 08:50:28 +00:00
"package.json",
"README.md"
],
2020-12-13 18:17:10 +00:00
"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"
},
2020-12-13 08:50:28 +00:00
"bugs": {
2020-12-22 14:22:57 +00:00
"url": "https://git.odit.services/lfk/lfk-client-node/issues"
2020-12-13 08:50:28 +00:00
},
2020-12-22 14:22:57 +00:00
"homepage": "https://git.odit.services/lfk/lfk-client-node/",
2020-12-13 18:17:10 +00:00
"devDependencies": {
"@types/node": "^14.14.13",
2020-12-13 18:37:10 +00:00
"@types/node-fetch": "^2.5.7",
2020-12-13 18:17:10 +00:00
"openapi-typescript-codegen": "^0.7.0",
2020-12-13 18:25:03 +00:00
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
2020-12-13 18:44:52 +00:00
},
"dependencies": {
"form-data": "^3.0.0",
"node-fetch": "^2.6.1"
2020-12-13 18:17:10 +00:00
}
}