UNPKG

@future-agi/sdk

Version:

We help GenAI teams maintain high-accuracy for their Models in production.

108 lines (107 loc) 2.81 kB
{ "name": "@future-agi/sdk", "version": "0.1.1", "description": "We help GenAI teams maintain high-accuracy for their Models in production.", "type": "module", "main": "./dist/esm/index.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/src/index.js", "types": "./dist/esm/index.d.ts" } }, "files": [ "dist" ], "scripts": { "prebuild": "rimraf dist", "build": "tsc --build tsconfig.json tsconfig.esm.json tsconfig.esnext.json && tsc-alias -p tsconfig.esm.json && pnpm run postbuild", "postbuild": "echo '{\"type\": \"module\"}' > ./dist/esm/package.json", "build:watch": "tsc --build --watch tsconfig.json", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "format": "prettier --write .", "format:check": "prettier --check .", "clean": "rimraf dist", "dev": "tsx src/index.ts", "typecheck": "tsc --noEmit", "prepare": "pnpm run build" }, "keywords": [ "ai", "evaluation", "genai", "machine-learning", "typescript", "model-evaluation", "accuracy", "esm", "esnext" ], "author": "Future AGI <no-reply@futureagi.com>", "repository": { "type": "git", "url": "git+https://github.com/futureagi/futureagi.git" }, "bugs": { "url": "https://github.com/futureagi/futureagi/issues" }, "homepage": "https://github.com/futureagi/futureagi#readme", "engines": { "node": ">=18.0.0", "pnpm": ">=8.0.0" }, "packageManager": "pnpm@8.15.0", "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^7.0.0", "@typescript-eslint/parser": "^7.0.0", "eslint": "^8.0.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "jest": "^29.5.0", "prettier": "^3.0.0", "rimraf": "^5.0.0", "ts-jest": "^29.1.0", "tsc-alias": "^1.8.0", "tsx": "^4.0.0", "typescript": "^5.3.0" }, "dependencies": { "@types/uuid": "^10.0.0", "axios": "^1.6.0", "uuid": "^11.1.0", "winston": "^3.11.0" }, "jest": { "preset": "ts-jest", "testEnvironment": "node", "roots": [ "<rootDir>/src" ], "testMatch": [ "**/__tests__/**/*.ts", "**/?(*.)+(spec|test).ts", "**/?(*.)+(integration.test).ts" ], "testPathIgnorePatterns": [ "<rootDir>/src/datasets/__tests__" ], "collectCoverageFrom": [ "src/**/*.ts", "!src/**/*.d.ts", "!src/**/__tests__/**", "!src/**/index.ts" ] }, "publishConfig": { "access": "public" } }