zotero-ts-api
Version:
A TypeScript API wrapper for Zotero
72 lines (71 loc) • 1.82 kB
JSON
{
"name": "zotero-ts-api",
"version": "1.0.11",
"description": "A TypeScript API wrapper for Zotero",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"test": "vitest",
"test:run": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:types": "vitest typecheck",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"type-check": "tsc --noEmit"
},
"keywords": [
"zotero",
"typescript",
"api",
"reference-manager",
"bibliography"
],
"author": "Sylvain BROCAS",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/votre-username/Zotero-TS-API.git"
},
"bugs": {
"url": "https://github.com/votre-username/Zotero-TS-API/issues"
},
"homepage": "https://github.com/votre-username/Zotero-TS-API#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^3.1.4",
"@vitest/ui": "^3.1.4",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"rimraf": "^6.0.0",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
},
"dependencies": {
"dotenv": "^16.5.0"
}
}