-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.44 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
{
"name": "hds-feminine-cycle-ui",
"version": "0.7.0",
"description": "Custom UI representations for cervical-fluid / cycle-tracking events (FEMM, Billings, Creighton).",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"prepare": "tsc",
"build": "tsc",
"test": "node --test tests/*.test.js",
"docs:images": "node scripts/render-method-images.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/healthdatasafe/hds-feminine-cycle-ui.git"
},
"main": "js/index.js",
"types": "js/index.d.ts",
"exports": {
".": {
"types": "./js/index.d.ts",
"import": "./ts/index.ts",
"default": "./js/index.js"
},
"./ts/*": "./ts/*",
"./js/*": "./js/*",
"./specs/*": "./ts/specs/*"
},
"keywords": [
"HDS",
"Health",
"Data",
"Safe",
"FEMM",
"Billings",
"Creighton",
"cycle"
],
"author": "HDS",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/healthdatasafe/hds-feminine-cycle-ui/issues"
},
"homepage": "https://github.com/healthdatasafe/hds-feminine-cycle-ui#readme",
"peerDependencies": {
"react": "^19.1.0"
},
"devDependencies": {
"@types/react": "^19.1.2",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"neostandard": "^0.12.0",
"react": "^19.1.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.20.0"
}
}