UNPKG

dadacat-lambda-pipeline

Version:
73 lines 2.13 kB
{ "name": "dadacat-lambda-pipeline", "version": "1.1.0", "description": "JavaScript client for the dadacat 3-lambda image generation pipeline", "type": "module", "main": "src/index.js", "types": "src/index.d.ts", "files": [ "src/", "dist/", "README.md", "LICENSE", "CHANGELOG.md" ], "scripts": { "build": "npm run build:esm && npm run build:cjs", "build:esm": "rollup -c rollup.config.esm.js", "build:cjs": "rollup -c rollup.config.cjs.js", "test": "NODE_OPTIONS='--experimental-vm-modules' jest", "test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch", "test:pipeline": "node scripts/tests/test-real-pipeline.js", "test:pipeline:gpt1": "node scripts/tests/test-real-pipeline-GPT-1.js", "test:options": "node scripts/tests/test-option-validation.js", "test:dalle": "node scripts/tests/test-dalle-models.js", "check:index": "./scripts/check-index.sh", "lint": "eslint src/**/*.js", "lint:fix": "eslint src/**/*.js --fix", "docs": "jsdoc -c jsdoc.config.json", "prepublishOnly": "npm run build && npm test" }, "keywords": [ "dadacat", "lambda", "image-generation", "ai", "pipeline", "aws", "backblaze", "b2" ], "author": "DadaCat Team", "license": "MIT", "dependencies": { "cross-fetch": "^4.0.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.0", "@rollup/plugin-node-resolve": "^15.0.0", "@rollup/plugin-terser": "^0.4.0", "eslint": "^8.0.0", "jest": "^29.0.0", "jest-environment-jsdom": "^29.0.0", "jsdoc": "^4.0.0", "rollup": "^4.0.0" }, "repository": { "type": "git", "url": "https://github.com/heydocbrown/dada_terminal.git", "directory": "llm_tools/lambda_pipeline_test/js_pipeline" }, "bugs": { "url": "https://github.com/heydocbrown/dada_terminal/issues" }, "homepage": "https://github.com/heydocbrown/dada_terminal/tree/main/llm_tools/lambda_pipeline_test/js_pipeline#readme", "engines": { "node": ">=14.0.0" }, "browserslist": [ "> 1%", "last 2 versions", "not dead" ] }