-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
38 lines (38 loc) · 1.2 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
{
"name": "node-poweredup",
"version": "8.0.6",
"description": "A Javascript module to interface with LEGO Powered Up components.",
"homepage": "https://github.com/nathankellenicki/node-poweredup/",
"main": "dist/node/index-node.js",
"types": "dist/node/index-node.d.ts",
"scripts": {
"build:node": "tsc",
"build:browser": "webpack --mode=production",
"build:all": "npm run build:node && npm run build:browser",
"lint": "tslint -c tslint.json \"./src/**/*.ts\"",
"build": "npm run lint && npm run build:all",
"docs": "jsdoc -c .jsdoc.json",
"all": "npm run build && npm run docs",
"prepublishOnly": "npm run lint && npm run build:node"
},
"author": "Nathan Kellenicki <nathan@kellenicki.com>",
"license": "MIT",
"dependencies": {
"@abandonware/noble": "1.9.2-24",
"compare-versions": "^6.1.0",
"debug": "^4.3.4"
},
"devDependencies": {
"@types/debug": "4.1.12",
"@types/node": "^20.12.7",
"@types/web-bluetooth": "0.0.20",
"buffer": "^6.0.3",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.1",
"ts-loader": "^9.5.1",
"tslint": "^6.1.3",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}