-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.69 KB
/
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
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
{
"name": "@hippaguard/react",
"version": "0.1.0",
"description": "Secure form handling with client-side encryption for React applications",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"test": "jest --runInBand --no-cache --detectOpenHandles",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"prepublishOnly": "npm run build",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit"
},
"keywords": [
"react",
"forms",
"security",
"encryption",
"hipaa",
"phi",
"pii",
"secure-forms",
"client-side-encryption"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/hippaguard"
},
"bugs": {
"url": "https://github.com/yourusername/hippaguard/issues"
},
"homepage": "https://github.com/yourusername/hippaguard#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.4",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"dompurify": "^3.2.3",
"lucide-react": "^0.469.0",
"marked": "^15.0.4"
}
}