UNPKG

@sap-ux/system-access

Version:

Reusable module allowing to access systems using the store or prompts.

54 lines 1.68 kB
{ "name": "@sap-ux/system-access", "description": "Reusable module allowing to access systems using the store or prompts.", "type": "module", "repository": { "type": "git", "url": "https://github.com/SAP/open-ux-tools.git", "directory": "packages/system-access" }, "bugs": { "url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Asystem-access" }, "version": "1.0.4", "license": "Apache-2.0", "author": "@SAP/ux-tools-team", "main": "dist/index.js", "files": [ "LICENSE", "dist", "ui5.yaml", "bin", "!dist/*.map", "!dist/**/*.map" ], "dependencies": { "prompts": "2.4.2", "@sap-ux/axios-extension": "2.0.4", "@sap-ux/btp-utils": "2.0.3", "@sap-ux/logger": "1.0.1", "@sap-ux/store": "2.0.2" }, "devDependencies": { "@jest/globals": "30.3.0", "@types/prompts": "2.4.9", "nock": "14.0.15", "rimraf": "6.1.3", "@sap-ux/project-access": "2.1.3" }, "engines": { "node": ">=22.x" }, "scripts": { "build": "tsc --build", "watch": "tsc --watch", "clean": "rimraf --glob dist test/test-output coverage *.tsbuildinfo", "format": "prettier --write '**/*.{js,json,ts,yaml,yml}' --ignore-path ../../.prettierignore", "lint": "eslint", "lint:fix": "eslint --fix", "test": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --ci --forceExit --detectOpenHandles --colors --testPathPatterns=test/unit", "test-u": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --ci --forceExit --detectOpenHandles --colors -u", "link": "pnpm link --global", "unlink": "pnpm unlink --global" } }