forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 715 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 715 Bytes
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
{
"name": "@basedhardware/omi-device",
"version": "0.1.0",
"description": "Omi device BLE protocol + optional noble transport + STT",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"license": "MIT",
"files": [
"src",
"README.md"
],
"scripts": {
"test": "bun test",
"typecheck": "bunx tsc --noEmit"
},
"peerDependencies": {
"@stoprocent/noble": ">=1.0.0"
},
"peerDependenciesMeta": {
"@stoprocent/noble": {
"optional": true
}
},
"optionalDependencies": {
"@stoprocent/noble": "^1.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.0.0"
}
}