-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.94 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.94 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
94
95
96
97
98
{
"name": "edge-impulse-linux",
"version": "1.24.2",
"description": "Node.js SDK and tools for Edge Impulse for Linux",
"directories": {
"example": "examples"
},
"scripts": {
"build": "tsc -p .",
"eslint": "eslint . -c .eslintrc.json --quiet --ext .ts,.js",
"lint": "npm run eslint",
"test": "tsc -b . && TS_NODE_PROJECT=./tsconfig.json mocha --config ./test/.mocharc.js",
"watch-runner": "func() { tsc-watch -b . --onSuccess \"node build/cli/linux/runner.js $1\" --noClear; }; func",
"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-linux": "build/cli/linux/linux.js",
"edge-impulse-linux-runner": "build/cli/linux/runner.js",
"edge-impulse-camera-debug": "build/cli/linux/camera-debug.js"
},
"main": "build/library/index.js",
"types": "build/library/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/edgeimpulse/linux-sdk-node.git"
},
"author": "EdgeImpulse Inc. <hello@edgeimpulse.com>",
"license": "BSD-3-Clause-Clear",
"bugs": {
"url": "https://github.com/edgeimpulse/linux-sdk-node/issues"
},
"homepage": "https://github.com/edgeimpulse/linux-sdk-node#readme",
"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",
"async-mutex": "0.2.6",
"borc": "2.1.2",
"cbor": "5.0.2",
"commander": "4.1.1",
"express": "4.21.2",
"inquirer": "7.0.0",
"inquirer-search-list": "1.2.6",
"koffi": "2.12.1",
"multer": "1.4.5-lts.1",
"npm-registry-fetch": "17.1.0",
"sharp": "0.32.6",
"socket.io": "4.8.1",
"tsee": "1.3.4",
"typed-emitter": "1.3.1",
"undici": "5.29.0",
"uuid": "11.1.0",
"ws": "7.5.10"
},
"devDependencies": {
"@stylistic/eslint-plugin": "1.8.1",
"@types/cbor": "5.0.0",
"@types/commander": "2.12.2",
"@types/express": "4.17.21",
"@types/inquirer": "6.5.0",
"@types/inquirer-autocomplete-prompt": "3.0.3",
"@types/mocha": "9.0.0",
"@types/multer": "1.4.11",
"@types/node": "16.18.126",
"@types/npm-registry-fetch": "8.0.7",
"@types/tar": "6.1.13",
"@types/ws": "6.0.4",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.0",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-n": "16.6.2",
"mocha": "9.2.2",
"ts-node": "10.9.2",
"tsc-watch": "6.2.0",
"typescript": "4.9.5",
"undici-types": "7.16.0"
},
"overrides": {
"@aws-sdk/util-locate-window": "3.693.0"
},
"files": [
"LICENSE",
"README.md",
"cli/linux/webserver/public",
"build/",
"!build/test/",
"!build/examples/",
"package*.json",
"examples/",
"test/",
"borc/",
"utypes.d.ts"
],
"engines": {
"node": ">=16.0.0"
}
}