tnl-midjourney-api
Version:
A Node.js module for interacting with Midjourney via The Next Leg
65 lines • 2.08 kB
JSON
{
"name": "tnl-midjourney-api",
"version": "1.0.3",
"description": "A Node.js module for interacting with Midjourney via The Next Leg",
"keywords": [
"typescript",
"Midjourney",
"The Next Leg"
],
"author": {
"name": "The Next Leg Midjourney API",
"url": "https://thenextleg.io",
"email": "support@thenextleg.io"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/thenextleg/tnl-midjourney-api.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm run lint && tsc",
"changelog": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"clean": "(rm -r ./.nyc_output || true) && (rm -r ./coverage || true) && (rm -r ./dist || true)",
"clean:all": "npm run clean && (rm -r ./node_modules || true)",
"cover": "nyc npm run test",
"cover:check": "nyc --check-coverage --reporter=lcov npm run test",
"lint": "eslint --ext .ts --fix src/**/*.ts test/**/*.ts",
"preversion": "npm run build && npm run cover:check",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"test": "mocha",
"upgrade": "npx npm-check -u",
"version": "npm run build && npm run changelog:update"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.2",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"chai": "^4.3.7",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.35.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"axios": "^1.4.0"
}
}