UNPKG

promptdesk

Version:
67 lines (66 loc) 1.69 kB
{ "name": "promptdesk", "version": "1.1.0", "description": "PromptDesk Javascript SDK", "exports": { ".": { "import": { "types": "./lib/esm/types/index.d.ts", "default": "./lib/esm/index.mjs" }, "require": { "types": "./lib/cjs/types/index.d.ts", "default": "./lib/cjs/index.js" } } }, "types": "./lib/cjs/types/index.d.ts", "main": "./lib/cjs/index.js", "files": [ "lib/**/*" ], "scripts": { "clean": "del-cli ./lib", "build": "npm run clean && npm run build:esm && npm run build:cjs", "build:esm": "tsc -p ./configs/tsconfig.esm.json && move-file lib/esm/index.js lib/esm/index.mjs", "build:cjs": "tsc -p ./configs/tsconfig.cjs.json", "test": "mocha -R spec --ui bdd", "semantic-release": "semantic-release", "prepack": "npm run build" }, "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/promptdesk/promptdesk-js.git" }, "keywords": [ "llmops", "promptdesk", "prompt engineering", "llm", "large language model" ], "author": "PromptDesk Contributors", "license": "MIT", "bugs": { "url": "https://github.com/promptdesk/promptdesk-js/issues" }, "homepage": "https://github.com/promptdesk/promptdesk-js#readme", "devDependencies": { "@types/chai": "^4.3.11", "@types/mocha": "^9.1.1", "chai": "^4.4.1", "del-cli": "^5.0.0", "mocha": "^10.2.0", "move-file-cli": "^3.0.0", "semantic-release": "^23.0.0", "ts-node": "^10.9.2", "typescript": "^4.7.4" }, "dependencies": { "axios": "^1.6.7", "handlebars": "^4.7.8" } }