-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1013 Bytes
/
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
{
"name": "@stanfordbdhg/engagehf-models",
"description": "Model types for ENGAGE-HF",
"repository": {
"type": "git",
"url": "git+https://github.com/StanfordBDHG/ENGAGE-HF-Firebase.git"
},
"type": "module",
"scripts": {
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"lint:strict": "npm run lint -- --max-warnings=0",
"build": "tsc",
"clean": "if [ -f 'tsconfig.tsbuildinfo' ]; then rm tsconfig.tsbuildinfo; fi && if [ -d 'lib' ]; then rm -r lib; fi"
},
"engines": {
"node": "22"
},
"files": [
"lib",
"README.md"
],
"main": "lib/index.js",
"dependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"eslint": "^8.57",
"eslint-config-google": "^0.14",
"eslint-config-prettier": "^9",
"eslint-plugin-import": "^2",
"eslint-plugin-prettier": "^5",
"prettier": "^3",
"typescript": "^5"
}
}