-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.63 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
{
"name": "biblib",
"version": "0.1.4",
"scripts": {
"build": "rimraf dist && tsc",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run test",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"test": "vitest run",
"dev": "vitest",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"description": "A powerful library for parsing various academic reference file formats in Node.js.",
"keywords": [
"medline",
"endnote",
"bibtex",
"ris",
"citation"
],
"homepage": "https://github.com/aliazlanpro/biblib",
"bugs": {
"url": "https://github.com/aliazlanpro/biblib/issues"
},
"author": "Ali Azlan <aliazlanofficial@gmail.com> (https://aliazlan.me)",
"repository": {
"type": "git",
"url": "git+https://github.com/aliazlanpro/biblib.git"
},
"files": [
"dist"
],
"type": "module",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@changesets/cli": "^2.27.7",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"prettier": "^3.4.2",
"rimraf": "^5.0.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"bibtex-parse": "^2.1.0",
"csv-parse": "^5.6.0",
"htmlparser2": "^10.0.0",
"lodash": "^4.17.21"
}
}