-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.04 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.04 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "edge-impulse-cli",
"version": "1.38.0",
"description": "Command-line interface tools for Edge Impulse",
"preferGlobal": true,
"scripts": {
"build": "tsc -p ./",
"lint": "eslint . -c .eslintrc.json --quiet --ext .ts",
"test": "tsc -b . && TS_NODE_PROJECT=./tsconfig.json mocha --config ./test/.mocharc.js",
"verify-build": "echo \"import { EdgeImpulseApi } from './build/sdk/studio/index.js'\" | node --input-type=module && [ $(find ./build/sdk -type f | wc -l) -gt 50 ]"
},
"bin": {
"edge-impulse-blocks": "build/cli/blocks.js",
"edge-impulse-daemon": "build/cli/daemon.js",
"edge-impulse-uploader": "build/cli/uploader.js",
"edge-impulse-data-forwarder": "build/cli/data-forwarder.js",
"edge-impulse-run-impulse": "build/cli/run-impulse.js",
"edge-impulse-serial-terminal": "build/cli/serial-terminal.js",
"eta-flash-tool": "build/cli/eta-flash-tool/flashtool.js",
"himax-flash-tool": "build/cli/himax-flash-tool/flashtool.js",
"edge-impulse-framebuffer2jpg": "build/cli/framebuffer-to-jpg.js"
},
"author": "EdgeImpulse Inc. <hello@edgeimpulse.com>",
"license": "BSD-3-Clause-Clear",
"repository": {
"type": "git",
"url": "https://github.com/edgeimpulse/edge-impulse-cli"
},
"dependencies": {
"@aws-sdk/client-iot-data-plane": "3.624.0",
"@aws-sdk/client-s3": "3.635.0",
"@aws-sdk/client-secrets-manager": "3.624.0",
"@types/uuid": "10.0.0",
"@xmldom/xmldom": "0.8.10",
"@zeit/dockerignore": "0.0.5",
"async-mutex": "0.2.6",
"buffer": "6.0.3",
"cbor": "5.0.2",
"cli-progress": "3.8.2",
"commander": "5.1.0",
"crc": "4.3.2",
"express": "4.21.2",
"image-size": "1.0.2",
"inquirer": "7.0.0",
"inquirer-search-list": "1.2.6",
"jpeg-js": "0.4.4",
"js-yaml": "4.1.0",
"npm-registry-fetch": "17.1.0",
"papaparse": "5.4.1",
"serialport": "8.0.8",
"sharp": "0.32.6",
"socket.io": "4.8.1",
"tar": "6.2.1",
"tiny-async-pool": "1.1.0",
"tsee": "1.3.4",
"undici": "5.29.0",
"ws": "7.5.10",
"yauzl": "2.10.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "1.8.1",
"@types/cbor": "5.0.0",
"@types/cli-progress": "3.7.0",
"@types/commander": "2.12.2",
"@types/express": "4.17.21",
"@types/inquirer": "6.5.0",
"@types/inquirer-autocomplete-prompt": "3.0.3",
"@types/js-yaml": "4.0.9",
"@types/mocha": "9.0.0",
"@types/node": "16.18.126",
"@types/npm-registry-fetch": "8.0.7",
"@types/papaparse": "5.3.7",
"@types/serialport": "7.0.4",
"@types/ssri": "7.1.1",
"@types/tar": "6.1.13",
"@types/tiny-async-pool": "1.0.0",
"@types/ws": "6.0.4",
"@types/yauzl": "2.9.2",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-n": "16.6.2",
"mocha": "9.2.2",
"ts-node": "10.9.2",
"typed-emitter": "1.3.1",
"typescript": "4.9.5",
"undici-types": "7.16.0"
},
"engines": {
"node": ">=16.0.0"
}
}