Skip to content

Commit

Permalink
Update dependencies version and fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikescops committed Apr 3, 2024
1 parent 6c28947 commit e76a55e
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 86 deletions.
137 changes: 65 additions & 72 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 12 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"watch": "parcel watch",
"build": "parcel build",
"lint": "tsc --noEmit && eslint \"src/**/*.ts{,x}\"",
"test": "echo \"Error: no test specified\" && exit 1"
"test": "ts-node tests/index.ts"
},
"author": "Corentin Mors <corentin@pixelswap.fr>",
"license": "MIT",
Expand All @@ -29,20 +29,19 @@
"koffi": "^2.8.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.10.3",
"@parcel/transformer-typescript-tsc": "^2.10.3",
"@parcel/transformer-typescript-types": "^2.10.3",
"@types/elementtree": "^0.1.5",
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"parcel": "^2.10.3",
"eslint-plugin-prettier": "^5.1.3",
"parcel": "^2.12.0",
"parcel-reporter-static-files-copy": "^1.5.3",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
"prettier": "^3.2.5",
"typescript": "^5.4.3"
},
"repository": {
"type": "git",
Expand All @@ -56,7 +55,7 @@
],
"staticFiles": [
{
"staticPath": ".build/apple/Products/Release/libKeychainLibrary.dylib"
"staticPath": ".build/apple/Products/Release/libKeychainLibrary.dylib"
}
],
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion tests/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as keychain from '../dist/main.js';
import * as keychain from '../src';

console.log(`Adding to keychain...`);

Expand Down

0 comments on commit e76a55e

Please sign in to comment.