-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 886 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 886 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
{
"name": "node-poweredup",
"version": "10.1.0",
"description": "A Javascript module to interface with LEGO Powered Up components.",
"homepage": "https://github.com/nathankellenicki/node-poweredup/",
"type": "module",
"main": "dist/index-node.js",
"types": "dist/index-node.d.ts",
"scripts": {
"build": "tsc -b",
"clean": "rimraf dist",
"docs": "typedoc",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"author": "Nathan Kellenicki <nathan@kellenicki.com>",
"license": "MIT",
"dependencies": {
"@stoprocent/noble": "^2.3.10",
"compare-versions": "^6.1.1",
"debug": "^4.4.3"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^25.0.0",
"@types/web-bluetooth": "^0.0.21",
"rimraf": "^6.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.28.15",
"typescript": "^5.9.3"
}
}