lfk-client-js/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2020-12-22 14:17:25 +00:00
{
"name": "@odit/lfk-client-js",
"description": "A lib to interact with https://git.odit.services/lfk/backend. Use this version for native JS applications.",
2023-05-10 11:39:57 +00:00
"version": "1.1.3",
2020-12-22 14:17:25 +00:00
"license": "CC-BY-NC-SA-4.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
2020-12-22 14:17:25 +00:00
"repository": {
"type": "git",
2020-12-22 14:26:44 +00:00
"url": "git+https://git.odit.services/lfk/lfk-client-js"
2020-12-22 14:17:25 +00:00
},
"keywords": [
"odit",
"odit.services",
"lfk"
],
"author": "ODIT.Services",
"files": [
2023-02-02 15:14:10 +00:00
"dist",
2020-12-22 14:17:25 +00:00
"package.json",
"README.md"
],
"scripts": {
2020-12-30 17:47:51 +00:00
"build": "npm run build:prepare && npm run build:lib && npm run build:compile && npm run build:cleanup",
2020-12-22 14:17:25 +00:00
"build:prepare": "rimraf ./lib ./dist",
2020-12-30 17:47:51 +00:00
"build:lib": "openapi --input ./openapi.json --output ./lib --client fetch",
2020-12-22 14:17:25 +00:00
"build:compile": "tsc",
"build:cleanup": "rimraf ./lib"
},
"bugs": {
2020-12-22 14:23:35 +00:00
"url": "https://git.odit.services/lfk/lfk-client-js/issues"
2020-12-22 14:17:25 +00:00
},
2020-12-22 14:23:35 +00:00
"homepage": "https://git.odit.services/lfk/lfk-client-js/",
2020-12-22 14:17:25 +00:00
"devDependencies": {
2023-02-02 09:38:17 +00:00
"openapi-typescript-codegen": "0.7.0",
"rimraf": "4.1.2",
"typescript": "4.9.5"
2020-12-22 14:17:25 +00:00
}
}