-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.62 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.62 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "kill-the-clipboard",
"version": "1.1.0",
"description": "JavaScript/TypeScript universal (browser and node) library to generate QR codes containing medical records for patients to share with providers. Implements both the SMART Health Cards Framework and SMART Health Links Protocol for handling FHIR-based medical records.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.esm.js"
}
},
"sideEffects": false,
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"build:check": "pnpm run build && pnpm run attw",
"dev": "rollup -c --watch",
"typecheck": "tsc --noEmit",
"attw": "attw --pack .",
"test": "vitest --run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"docs:generate": "typedoc",
"docs:clean": "rm -rf docs",
"docs:build": "pnpm run docs:clean && pnpm run docs:generate",
"docs:watch": "typedoc --watch",
"prepare": "husky",
"prepublishOnly": "pnpm run test && pnpm run build && pnpm run attw",
"validate:examples": "node ./scripts/validate-health-cards-examples.ts",
"shc:demo:dev": "pnpm run build && cd demo/shc && pnpm dev",
"shl:demo:dev": "pnpm run build && cd demo/shl && pnpm dev",
"medplum-shl:demo:dev": "pnpm run build && cd demo/medplum-shl && pnpm dev"
},
"lint-staged": {
"*.{js,ts,json}": "biome check --write --no-errors-on-unmatched"
},
"keywords": [
"smart-health-cards",
"smart-health-links",
"fhir",
"qr-code",
"medical-records",
"healthtech",
"healthcare",
"interoperability",
"patient-data",
"vaccination-cards",
"health-passport",
"verifiable-credentials",
"jwt",
"jws",
"typescript",
"javascript",
"browser",
"node"
],
"author": {
"email": "neg4n@icloud.com",
"name": "neg4n",
"url": "https://github.com/neg4n"
},
"license": "MIT",
"homepage": "https://github.com/vintasoftware/kill-the-clipboard",
"repository": {
"type": "git",
"url": "https://github.com/vintasoftware/kill-the-clipboard.git"
},
"bugs": {
"url": "https://github.com/vintasoftware/kill-the-clipboard/issues"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.8.0",
"dependencies": {
"jose": "^6.0.12",
"jose-v4": "npm:jose@^4.15.4",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "2.0.4",
"@medplum/fhirtypes": "^4.3.10",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.3",
"@types/node": "^22.17.0",
"@types/pngjs": "^6.0.5",
"@types/qrcode": "^1.5.5",
"@vitest/coverage-v8": "3.2.4",
"husky": "9.1.7",
"jsqr": "^1.4.0",
"lint-staged": "16.1.2",
"pngjs": "^7.0.0",
"rollup": "^4.44.0",
"rollup-plugin-dts": "^6.2.1",
"sharp": "^0.33.0",
"tslib": "^2.8.1",
"type-fest": "^4.41.0",
"typedoc": "^0.28.10",
"typedoc-material-theme": "^1.4.0",
"typedoc-plugin-version-select": "^2.0.0",
"typescript": "^5.8.3",
"undici-types": "^6.0.0",
"vitest": "3.2.4"
}
}