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

42 lines
1.1 KiB
JSON
Raw Normal View History

2020-12-13 08:50:28 +00:00
{
"name": "@odit/lfk-client",
"description": "A lib to interact with https://git.odit.services/lfk/backend",
2020-12-13 09:21:17 +00:00
"version": "0.0.1",
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",
2020-12-13 08:50:28 +00:00
"repository": {
"type": "git",
"url": "git+https://git.odit.services/lfk/lib"
},
"keywords": [
"odit",
"odit.services",
"lfk"
],
"author": "ODIT.Services",
"files": [
"**/dist",
"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": {
"url": "https://git.odit.services/lfk/lib/issues"
},
2020-12-13 18:17:10 +00:00
"homepage": "https://git.odit.services/lfk/lib/",
"devDependencies": {
"@types/node": "^14.14.13",
"form-data": "^3.0.0",
"node-fetch": "^2.6.1",
"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:17:10 +00:00
}
}