-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 876 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 876 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": "daqifi",
"version": "0.0.3",
"description": "node.js package for connecting to DAQiFi Nyquist DACs",
"main": "dist/lib/index.js",
"scripts": {
"prepare": "npm run build",
"test": "test",
"build": "tsc && cp lib/nodered/*.html dist/lib/nodered/",
"build:proto": "protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_opt=forceLong=long --ts_proto_opt=esModuleInterop=true --ts_proto_out=. ./protos/DaqifiOutMessage.proto"
},
"author": "Marc Bernardini",
"license": "MIT",
"directories": {
"dist": "dist",
"example": "example",
"lib": "lib"
},
"devDependencies": {
"@types/node-red": "^1.2.1",
"typescript": "^4.7.4"
},
"dependencies": {
"protobufjs": "^7.0.0",
"ts-proto": "^1.121.5"
},
"node-red": {
"nodes": {
"nyquist": "dist/lib/nodered/NyquistNode.js"
}
}
}