-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "scholar-sidekick-cli",
"version": "0.1.2",
"description": "Command-line client for Scholar Sidekick — resolve any scholarly identifier (DOI, PMID, PMCID, ISBN, arXiv, ISSN, ADS, WHO IRIS) into 10,000+ CSL citation styles or nine export formats, and run retraction, open-access, and citation-verification checks, straight from your terminal.",
"license": "MIT",
"author": "Scholar Sidekick",
"repository": {
"type": "git",
"url": "git+https://github.com/mlava/scholar-sidekick-cli.git"
},
"homepage": "https://scholar-sidekick.com",
"bugs": {
"url": "https://github.com/mlava/scholar-sidekick-cli/issues"
},
"keywords": [
"cli",
"command-line",
"citations",
"bibliography",
"academic",
"scholar",
"doi",
"pmid",
"pmcid",
"isbn",
"arxiv",
"issn",
"ads-bibcode",
"who-iris",
"bibtex",
"ris",
"csl",
"endnote",
"zotero",
"crossref",
"reference-manager",
"retraction",
"retraction-watch",
"open-access",
"unpaywall",
"citation-verification"
],
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"scholar": "dist/cli.mjs"
},
"files": [
"dist/cli.mjs"
],
"scripts": {
"build": "node scripts/build.mjs",
"test": "vitest run",
"test:ci": "vitest run --allowOnly=false",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^13.1.0"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@vitest/coverage-v8": "^2.1.9",
"esbuild": "^0.25.8",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.9"
}
}