-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 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
{
"name": "@opendeved/doi-sync-core",
"version": "0.1.0",
"description": "Pure Zotero, Crossref, and Zenodo DOI sync logic shared by OpenDevEd services.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./display": {
"types": "./dist/display.d.ts",
"import": "./dist/display.js"
}
},
"files": [
"dist",
"README.md"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "node -e \"import('node:fs').then(({ rmSync }) => rmSync('dist', { recursive: true, force: true }))\"",
"build": "npm run clean && tsc -p tsconfig.build.json",
"lint": "eslint \"src/**/*.ts\" vitest.config.ts",
"prepare": "npm run build",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"verify": "npm run lint && npm run typecheck && npm test && npm run build"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"bottleneck": "^2.19.5",
"fast-xml-parser": "^5.8.0",
"p-retry": "^8.0.0",
"xmlbuilder2": "^4.0.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.10.1",
"eslint": "^10.4.0",
"msw": "^2.14.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.4",
"vitest": "^4.1.6"
}
}