UNPKG

@microsoft/kiota

Version:

npm package exposing Kiota CLI functionality to TypeScript

76 lines (75 loc) 1.93 kB
{ "name": "@microsoft/kiota", "version": "1.27.0", "description": "npm package exposing Kiota CLI functionality to TypeScript", "repository": { "url": "https://github.com/microsoft/kiota.git", "type": "git" }, "directories": { "lib": "lib", "test": "tests" }, "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "exports": { "import": { "types": "./dist/esm/types/index.d.ts", "default": "./dist/esm/index.js" }, "require": { "types": "./dist/cjs/types/index.d.ts", "default": "./dist/cjs/index.js" } }, "types": "dist/esm/types/index.d.ts", "typesVersions": { "*": { "import": [ "./dist/esm/types/index.d.ts" ], "require": [ "./dist/cjs/types/index.d.ts" ] } }, "files": [ "dist", "runtime.json" ], "scripts": { "lint": "eslint", "test": "jest --runInBand", "test:unit": "jest --config=jest.config.unit.cjs", "test:integration": "jest --config=jest.config.integration.cjs --runInBand", "build": "npm run clean && npm run build:esm && npm run build:cjs && npm run copy-files", "build:esm": "tsc --project tsconfig.esm.json", "build:cjs": "tsc --project tsconfig.cjs.json", "clean": "rimraf dist", "copy-files": "node scripts/copy-files.js", "generate-readme": "node scripts/generate-readme.js", "test:coverage": "jest --coverage --runInBand", "prepack": "npm run build", "package": "npm pack" }, "keywords": [ "Kiota" ], "author": "Microsoft", "license": "MIT", "dependencies": { "adm-zip": "^0.5.16", "original-fs": "^1.2.0", "uuid": "^11.1.0", "vscode-jsonrpc": "^8.2.1" }, "devDependencies": { "@types/adm-zip": "^0.5.7", "@types/jest": "^29.5.14", "glob": "^11.0.1", "jest": "^29.7.0", "rimraf": "^6.0.1", "ts-jest": "^29.3.1", "ts-loader": "^9.5.2" } }