-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "@quintessential/health-hid",
"version": "0.0.4",
"description": "A library for interacting with medical devices over WebHID.",
"author": "Quintessential SFT",
"license": "MIT",
"scripts": {
"setup": "npm ci",
"dev": "rspack serve",
"build": "rimraf dist && rspack build",
"build-prod": "rimraf dist && rspack build --env production",
"type-check": "rimraf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Quintessential-SFT/HealthHID.git"
},
"private": false,
"exports": {
".": "./dist/health-hid.js"
},
"types": "./dist/health-hid.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@rspack/cli": "^0.3.11",
"@rspack/core": "^0.3.11",
"@types/w3c-web-hid": "^1.0.6",
"npm-dts-webpack-plugin": "^1.3.12",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
},
"sideEffects": false,
"keywords": [
"WebHID",
"TypeScript",
"Biometrics",
"bioinformatics"
]
}