@tensorify.io/sdk
Version:
TypeScript SDK for developing Tensorify plugins with V2-Alpha definition/execution pattern and legacy compatibility
83 lines • 1.92 kB
JSON
{
"name": "@tensorify.io/sdk",
"version": "2.0.7",
"private": false,
"description": "TypeScript SDK for developing Tensorify plugins with V2-Alpha definition/execution pattern and legacy compatibility",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"dependencies": {
"zod": "^3.25.0"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.0",
"@repo/eslint-config": "0.0.0"
},
"author": "AlphaWolf Ventures, Inc.",
"license": "ISC",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./contracts": {
"types": "./dist/contracts/index.d.ts",
"import": "./dist/contracts/index.js",
"require": "./dist/contracts/index.js"
}
},
"typesVersions": {
"*": {
"contracts": [
"dist/contracts/index.d.ts"
]
}
},
"keywords": [
"tensorify",
"sdk",
"plugin",
"machine-learning",
"typescript",
"frontend",
"react-flow",
"validation"
],
"repository": {
"type": "git",
"url": "https://github.com/tensorify/backend.tensorify.io.git",
"directory": "packages/sdk"
},
"bugs": {
"url": "https://github.com/tensorify/backend.tensorify.io/issues"
},
"homepage": "https://tensorify.io",
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "pnpm run build:watch",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit"
}
}