-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "node-osmo",
"version": "1.1.0",
"description": "Typescript library for controlling DJI Osmo Action 4 and Pocket 3 using BLE (Bluetooth Low Energy)",
"type": "module",
"source": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">= 20.9"
},
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@types/jest": "~29.5.13",
"@types/node": "~20.16.7",
"@typescript-eslint/eslint-plugin": "~7.6.0",
"@typescript-eslint/parser": "~7.6.0",
"eslint": "~8.56.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-jest": "~28.2.0",
"jest": "~29.7.0",
"prettier": "~3.2.5",
"rimraf": "~5.0.10",
"ts-api-utils": "~1.3.0",
"ts-jest": "~29.1.5",
"typescript": "~5.4.5"
},
"scripts": {
"start": "node demo.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage --passWithNoTests",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch --passWithNoTests"
},
"author": "Thomas Lekanger <datagutt@lekanger.no>",
"license": "MIT",
"dependencies": {
"@stoprocent/noble": "1.15.1",
"bytebuf": "^1.2.0",
"crc-full": "1.1.0",
"node-osmo": "file:",
"tslib": "~2.6.3"
},
"volta": {
"node": "20.15.1",
"pnpm": "9.5.0"
},
"packageManager": "pnpm@9.5.0"
}