-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
35 lines (35 loc) · 908 Bytes
/
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
{
"name": "web-arduino-uploader",
"version": "1.1.2",
"main": "dist/index.ts",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "David Buezas",
"email": "[email protected]",
"url": "https://github.com/dbuezas/arduino-web-uploader/"
},
"scripts": {
"prepublish": "npm run build",
"build": "tsc && webpack"
},
"devDependencies": {
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"buffer": "^5.6.1",
"eslint": "^7.12.0",
"prettier": "^2.1.2",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"typescript": "^4.0.3",
"webpack": "^5.2.0",
"webpack-cli": "^4.1.0"
},
"dependencies": {
"async": "^3.2.0",
"intel-hex": "^0.1.2",
"readable-web-to-node-stream": "^2.0.0",
"stk500": "github:dbuezas/js-stk500v1#v3.0.0"
}
}