forked from jacobrosenthal/js-stk500v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 960 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
36
37
38
{
"name": "stk500-esm",
"version": "1.4.3",
"description": "A modern, ESM-compatible, TypeScript implementation of the STK500v1 protocol for programming Arduino boards directly from Node.js or the browser.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"lint": "eslint src",
"build": "tsc",
"test": "tsx --test",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barrenechea/stk500-esm.git"
},
"keywords": [
"arduino",
"stk500",
"avrdude",
"typescript",
"esm"
],
"author": "Sebastian Barrenechea",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"serialport": "^12.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}