yanki-connect
Version:
A fully-typed Anki-Connect API client.
69 lines • 1.79 kB
JSON
{
"name": "yanki-connect",
"version": "3.2.2",
"description": "A fully-typed Anki-Connect API client.",
"keywords": [
"anki",
"flashcards",
"spaced-repetition",
"anki-connect",
"client",
"api",
"yanki",
"npm-package"
],
"homepage": "https://github.com/kitschpatrol/yanki-connect",
"bugs": "https://github.com/kitschpatrol/yanki-connect/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/kitschpatrol/yanki-connect.git"
},
"license": "MIT",
"author": {
"name": "Eric Mika",
"email": "eric@ericmika.com",
"url": "https://ericmika.com"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@types/node": "^18.19.130",
"open": "^10.2.0"
},
"devDependencies": {
"@kitschpatrol/shared-config": "^5.10.0",
"@types/jsdom": "^27.0.0",
"@vitest/browser-playwright": "^4.0.15",
"@vitest/coverage-v8": "^4.0.15",
"bumpp": "^10.3.2",
"jsdom": "^27.3.0",
"playwright": "^1.57.0",
"ts-morph": "^27.0.2",
"tsdown": "^0.17.2",
"typescript": "~5.9.3",
"vitest": "^4.0.15"
},
"engines": {
"node": "^18.15.0 || >=20.11.0"
},
"scripts": {
"build": "tsdown --minify --platform neutral --tsconfig tsconfig.build.json",
"clean": "git rm -f pnpm-lock.yaml ; git clean -fdX",
"coverage": "vitest run --coverage",
"fix": "ksc fix",
"lint": "ksc lint",
"release": "bumpp --commit 'Release: %s' && pnpm run build && NPM_AUTH_TOKEN=$(op read 'op://Personal/npm/token') && pnpm publish",
"test": "vitest"
}
}