-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.9 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
73
74
{
"name": "@mu373/epiweek",
"version": "2.0.2",
"description": "Epidemiological week conversion tool (MMWR and ISO)",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist"
],
"author": "Minami Ueda <minami.ueda@gmail.com>",
"contributors": [
"Abhinav Tushar <abhinav.tushar.vs@gmail.com>"
],
"license": "MIT",
"keywords": [
"epiweek",
"epiweeks",
"flusight",
"mmwr",
"epidemiology",
"cdc"
],
"repository": {
"type": "git",
"url": "https://github.com/mu373/epiweek.git"
},
"scripts": {
"build": "pnpm run build:esm && pnpm run build:cjs && pnpm run build:cjs-package",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:cjs-package": "echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"doc": "typedoc --out ./docs/ src/index.ts --excludePrivate && touch ./docs/.nojekyll",
"prepublishOnly": "pnpm run test && pnpm run build"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.4.1",
"tsx": "^4.21.0",
"typedoc": "^0.28.15",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
},
"dependencies": {
"date-fns": "^4.1.0",
"micro-memoize": "^5.1.1"
},
"engines": {
"node": ">= 18.0.0"
}
}