diff --git a/bun.lockb b/bun.lockb index c71b6ef..7623f90 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 22a4a1f..5fc84b2 100644 --- a/package.json +++ b/package.json @@ -2,14 +2,11 @@ "name": "cla66ic", "module": "index.ts", "type": "module", - "devDependencies": { - "@types/bun": "latest" - }, "peerDependencies": { "typescript": "^5.0.0" }, "dependencies": { "cbor-x": "^1.5.9", - "netlinkwrapper": "^2.0.2" + "@types/bun": "latest" } } \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 0fef23a..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "compilerOptions": { - // Enable latest features - "lib": ["ESNext"], - "target": "ESNext", - "module": "ESNext", - "moduleDetection": "force", - "jsx": "react-jsx", - "allowJs": true, - - // Bundler mode - "moduleResolution": "bundler", - "allowImportingTsExtensions": true, - "verbatimModuleSyntax": true, - "noEmit": true, - - // Best practices - "strict": true, - "skipLibCheck": true, - "noFallthroughCasesInSwitch": true, - - // Some stricter flags (disabled by default) - "noUnusedLocals": false, - "noUnusedParameters": false, - "noPropertyAccessFromIndexSignature": false - } -}