@tensorify.io/sdk
Version:
TypeScript SDK for developing Tensorify plugins with comprehensive validation, frontend enforcement, and publishing tools
69 lines • 1.63 kB
JSON
{
"name": "@tensorify.io/sdk",
"version": "0.0.28",
"private": false,
"description": "TypeScript SDK for developing Tensorify plugins with comprehensive validation, frontend enforcement, and publishing tools",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"dependencies": {},
"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"
}
},
"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"
}
}