-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.12 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.12 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
75
76
77
78
79
80
81
82
83
84
{
"name": "hds-forms-js",
"version": "0.10.0",
"description": "HDS Form Components — React field renderers for HDS item definitions",
"type": "module",
"main": "js/hds-forms.js",
"types": "src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"default": "./js/hds-forms.js"
},
"./src/*": "./src/*",
"./js/*": "./js/*"
},
"files": [
"js",
"src"
],
"engines": {
"node": ">=24"
},
"scripts": {
"prepare": "vite build",
"setup": "sh ./scripts/setup.sh",
"dev": "vite build --watch",
"build": "vite build && tsc --emitDeclarationOnly",
"deploy": "bash scripts/deploy.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test-app": "npm --prefix src-test-app run dev",
"test-app:setup": "npm --prefix src-test-app install",
"build:app": "npm --prefix src-test-app run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/healthdatasafe/hds-forms-js.git"
},
"keywords": [
"HDS",
"Health",
"Data",
"Safe",
"forms"
],
"author": "HDS",
"license": "BSD-3-Clause",
"peerDependencies": {
"hds-style": "git+https://github.com/healthdatasafe/style-package.git",
"react": ">=19",
"react-dom": ">=19"
},
"peerDependenciesMeta": {
"hds-style": {
"optional": true
}
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.11",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react-swc": "^4.0.0",
"eslint": "^9.18.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.0",
"globals": "^15.14.0",
"neostandard": "^0.12.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.1.11",
"typescript": "^5.7.0",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
},
"dependencies": {
"hds-feminine-cycle-ui": "github:healthdatasafe/hds-feminine-cycle-ui",
"hds-lib": "github:healthdatasafe/hds-lib-js"
}
}