-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.55 KB
/
package.json
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
{
"name": "publication-ids",
"version": "1.3.1",
"description": "Javascript / Typescript validator and parse for publication ids; DOI, PMID, PMCID, ISBN, and ISSN",
"license": "MIT",
"author": {
"name": "Benjamin Grant",
"email": "[email protected]",
"url": "https://begrant.io"
},
"repository": {
"type": "git",
"url": "https://github.com/nothingrandom/publication-ids"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"doi",
"isbn",
"isbn10",
"isbn13",
"issn",
"pubmed",
"pmid",
"publication",
"validator",
"validate",
"validation",
"extract",
"parse",
"audit"
],
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"publication-ids": "./dist/cli.js"
},
"sideEffects": false,
"devDependencies": {
"@eslint/js": "^9.19.0",
"@stylistic/eslint-plugin": "^3.0.1",
"@types/bun": "latest",
"eslint": "^9.19.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.14.0",
"typescript-eslint": "^8.22.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"build:pre": "bun run lint && bun test",
"build": "rm -rf dist && bun run bun.build.ts && tsc --emitDeclarationOnly",
"lint": "tsc --noEmit && eslint src"
},
"dependencies": {
"meow": "^13.2.0"
}
}