UNPKG

stability-ai

Version:
65 lines (64 loc) 1.72 kB
{ "name": "stability-ai", "version": "0.7.0", "description": "Node SDK for Stability AI REST API", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "test": "jest --config jestconfig.json --detectOpenHandles", "format": "prettier --write \"src/**/*.ts\"", "lint": "eslint .", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/jbeoris/stability-ai-node-sdk.git" }, "keywords": [ "stability-ai", "stability-ai-node-sdk", "stability", "ai" ], "author": { "email": "jack@beoris.com", "name": "Jack Beoris", "url": "https://jackbeoris.com" }, "license": "MIT", "bugs": { "url": "https://github.com/jbeoris/stability-ai-node-sdk/issues" }, "homepage": "https://github.com/jbeoris/stability-ai-node-sdk#readme", "devDependencies": { "@eslint/js": "^9.15.0", "@types/fs-extra": "^11.0.4", "@types/jest": "^29.5.12", "@types/lodash": "^4.17.0", "@types/uuid": "^9.0.8", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", "eslint": "^9.15.0", "globals": "^15.12.0", "jest": "^29.7.0", "prettier": "^3.2.5", "ts-jest": "^29.1.2", "tslint-config-prettier": "^1.18.0", "typescript": "^5.4.5", "typescript-eslint": "^8.15.0" }, "files": [ "dist" ], "dependencies": { "axios": "^1.6.8", "dotenv": "^16.4.5", "fs-extra": "^11.2.0", "uuid": "^9.0.1" } }