@unito/integration-api
Version:
The Unito Integration API
66 lines (65 loc) • 1.78 kB
JSON
{
"name": "@unito/integration-api",
"version": "4.1.1",
"description": "The Unito Integration API",
"type": "module",
"types": "./dist/src/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"require": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.cjs"
}
}
},
"files": [
"dist/src/**/*",
"dist/schemas/**/*"
],
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"prepublishOnly": "npm run lint && npm run test",
"prepare": "npm run compile",
"lint": "eslint --fix src test --ext .ts && prettier --write src test",
"compile:esm": "tsc",
"compile:cjs": "rollup dist/src/index.js --file dist/src/index.cjs --format cjs",
"compile:schemas": "mkdir -p dist/schemas && cp schemas/*.json dist/schemas/",
"compile": "rm -rf dist && npm run compile:esm && npm run compile:cjs && npm run compile:schemas",
"test": "NODE_ENV=test node --loader ts-node/esm --test ./test/*.test.ts",
"test:debug": "NODE_ENV=test node --loader ts-node/esm --inspect-brk --test ./test/*.test.ts",
"ci:test": "c8 npm run test"
},
"author": {
"name": "Unito",
"email": "hello@unito.io"
},
"license": "LicenseRef-LICENSE",
"keywords": [
"typescript",
"unito",
"unitoio",
"unitoinc",
"sync",
"integrations",
"connectors"
],
"devDependencies": {
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "7.x",
"@typescript-eslint/parser": "7.x",
"c8": "9.x",
"eslint": "8.x",
"prettier": "3.x",
"rollup": "4.x",
"ts-node": "10.x",
"typescript": "5.x"
}
}