-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "node-sous-vide",
"version": "0.0.6",
"description": "A Node.js API for the Anova Nano",
"repository": {
"type": "git",
"url": "git+https://github.com/dengelke/node-sous-vide.git"
},
"keywords": [
"sous-vide",
"anova",
"nano",
"bluetooth",
"ble",
"cooking"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build:protobuf": "npm run build:protobuf:js && npm run build:protobuf:ts",
"build:protobuf:js": "npx pbjs -t static-module -w commonjs -o ./src/proto/messages.js ./src/proto/messages.proto",
"build:protobuf:ts": "npx pbts -o ./src/proto/messages.d.ts ./src/proto/messages.js",
"copy:protobuf": "mkdir -p ./lib/proto && cp ./src/proto/*.js ./lib/proto/ && cp ./src/proto/*.ts ./lib/proto/",
"lib": "rimraf ./lib && npm run build:protobuf && npx tsc && npm run copy:protobuf",
"prepublishOnly": "npm run lib",
"start": "node lib/index.js",
"test": "npx mocha"
},
"author": "",
"license": "MIT",
"dependencies": {
"@abandonware/noble": "^1.9.2-15",
"p-queue": "^6.0.0",
"protobufjs": "^6.11.2"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"mocha": "^9.1.3",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}