-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 870 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 870 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
33
34
35
{
"name": "electron_sample",
"version": "1.0.0",
"description": "PubSub Electron sample",
"main": "./dist/Main.js",
"scripts": {
"tsc": "tsc",
"prepare": "npm run tsc",
"start": "electron ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws/aws-iot-device-sdk-js-v2.git"
},
"author": "AWS SDK Common Runtime Team <aws-sdk-common-runtime@amazon.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aws/aws-iot-device-sdk-js-v2/issues"
},
"homepage": "https://github.com/aws/aws-iot-device-sdk-js-v2#readme",
"devDependencies": {
"electron": "^39.2.7",
"events": "^3.3.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@aws-sdk/util-utf8-browser": "^3.109.0",
"aws-iot-device-sdk-v2": "file:../../../"
},
"build": {
"files": [
"dist/*"
]
}
}