@theventures/caret
Version:
Unofficial Node.js API client for the Caret HTTP API
59 lines (58 loc) • 1.41 kB
JSON
{
"name": "@theventures/caret",
"version": "0.1.1",
"description": "Unofficial Node.js API client for the Caret HTTP API",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun run clean && bun build src/index.ts --outfile dist/index.mjs --target node --format esm && bun build src/index.ts --outfile dist/index.cjs --target node --format cjs && bun tsc --project tsconfig.build.json",
"clean": "rm -rf dist",
"test": "bun test",
"typecheck": "bun tsc --noEmit",
"prepublishOnly": "bun run build && bun test && bun lint",
"format": "biome check . --write",
"fix": "biome check --fix --unsafe",
"lint": "biome check ."
},
"keywords": [
"caret",
"api",
"sdk",
"typescript",
"meeting",
"transcription",
"notes"
],
"author": "TheVentures",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/theventures/caret"
},
"homepage": "https://github.com/theventures/caret#readme",
"bugs": {
"url": "https://github.com/theventures/caret/issues"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@types/bun": "latest",
"typescript": "^5"
}
}