mirror of
https://github.com/chirimen-oh/node-web-i2c.git
synced 2025-04-02 11:16:26 +00:00
Compare commits
18 commits
Author | SHA1 | Date | |
---|---|---|---|
|
cf831cc008 | ||
|
896714da7e | ||
|
ef94462160 | ||
|
07c376efcb | ||
|
13b4234883 | ||
|
c4fb54b68a | ||
|
0ca4f6bb54 | ||
|
a233915475 | ||
|
15d12e8125 | ||
|
1e7bdb29aa | ||
|
fdc7e65f83 | ||
|
1d8504564c | ||
|
40699bda3d | ||
|
6f9345b556 | ||
|
d995f841d4 | ||
|
25820f205e | ||
|
b729bc3023 | ||
|
d9103908ec |
4 changed files with 358 additions and 390 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
@ -4,8 +4,8 @@ jobs:
|
|||
main:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "lts/*"
|
||||
cache: yarn
|
||||
|
|
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
|
@ -6,8 +6,8 @@ jobs:
|
|||
main:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "lts/*"
|
||||
cache: yarn
|
||||
|
|
16
package.json
16
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "node-web-i2c",
|
||||
"version": "1.1.27",
|
||||
"version": "1.1.36",
|
||||
"description": "I2C access with Node.js",
|
||||
"main": "index.js",
|
||||
"files": [
|
||||
|
@ -14,18 +14,18 @@
|
|||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@types/i2c-bus": "^5.1.0",
|
||||
"@types/node": "^18.0.0",
|
||||
"@types/node": "^20.0.0",
|
||||
"i2c-bus": "^5.2.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^18.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.6.0",
|
||||
"@typescript-eslint/parser": "^5.6.0",
|
||||
"@types/node": "^20.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
||||
"@typescript-eslint/parser": "^6.0.0",
|
||||
"eslint": "^8.4.1",
|
||||
"husky": "^8.0.0",
|
||||
"lint-staged": "^13.0.0",
|
||||
"prettier": "^2.5.1",
|
||||
"typedoc": "^0.23.0",
|
||||
"lint-staged": "^15.0.0",
|
||||
"prettier": "^3.0.0",
|
||||
"typedoc": "^0.25.0",
|
||||
"typescript": "^5.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
Loading…
Add table
Reference in a new issue