UNPKG

mindstudio

Version:

Client library for MindStudio AI Workers

95 lines (94 loc) 2.33 kB
{ "name": "mindstudio", "version": "0.9.6", "description": "Client library for MindStudio AI Workers", "author": "MindStudio AI <support@mindstudio.ai> (https://www.mindstudio.ai)", "license": "MIT", "homepage": "https://www.mindstudio.ai", "repository": { "type": "git", "url": "git+https://github.com/mindstudio-ai/mindstudio-node.git" }, "bugs": { "url": "https://github.com/mindstudio-ai/mindstudio-node/issues" }, "keywords": [ "mindstudio", "ai", "machine-learning", "llm", "artificial-intelligence", "ai-workers", "node-client", "api-client" ], "main": "./dist/src/index.js", "types": "./dist/src/index.d.ts", "bin": { "mindstudio": "dist/src/cli/index.js" }, "exports": { ".": { "types": "./dist/src/index.d.ts", "require": "./dist/src/index.js", "default": "./dist/src/index.js" } }, "files": [ "dist", "!dist/**/__tests__", "!dist/**/*.test.*", "!dist/**/*.spec.*", "!dist/tests", "!tests" ], "scripts": { "clean": "rm -rf dist", "build": "npm run clean && tsc && chmod +x dist/src/cli/index.js", "test": "jest --runInBand", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:integration": "jest --config=jest.integration.config.js", "lint": "eslint src --ext .ts", "format": "prettier --write src", "docs": "typedoc", "prepublishOnly": "npm run test && npm run build", "prepare": "npm run build", "preversion": "npm run test", "version": "npm run build", "postversion": "git push && git push --tags", "publish:npm": "npm publish" }, "dependencies": { "axios": "^1.7.7", "commander": "^12.1.0", "dotenv": "^16.4.5", "inquirer": "^12.0.1" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.8.7", "axios-mock-adapter": "^2.1.0", "eslint": "^9.14.0", "jest": "^29.7.0", "prettier": "^3.3.3", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "typescript": "5.6.3" }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" }, "volta": { "node": "18.x" }, "funding": { "type": "url", "url": "https://www.mindstudio.ai" }, "sideEffects": false, "type": "commonjs" }