New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

microsql

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

microsql - npm Package Compare versions

Comparing version
0.0.2
to
0.0.3
+4
-3
package.json
{
"name": "microsql",
"version": "0.0.2",
"version": "0.0.3",
"description": "A tiny file-based database for TypeScript and JavaScript projects.",

@@ -9,3 +9,3 @@ "type": "module",

"type": "git",
"url": "git+https://github.com/moshetanzer/micro-db.git"
"url": "git+https://github.com/moshetanzer/microsql.git"
},

@@ -27,3 +27,4 @@ "files": [

"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
"prepublishOnly": "pnpm run build",
"release": "bumpp && npm publish"
},

@@ -30,0 +31,0 @@ "devDependencies": {

@@ -35,3 +35,3 @@ # MicroSQL

```typescript
import { MicroSQL } from "micro-db";
import { MicroSQL } from "microsql";

@@ -126,3 +126,2 @@ const db = new MicroSQL("./data");

- **Static site generators** - Keep data in version control
- **Educational projects** - Teach SQL concepts without complex setup
- **Small applications** - Where SQLite is overkill

@@ -181,18 +180,4 @@

## Contributing
Contributions welcome! Please:
1. Fork the repository
2. Create a feature branch
3. Add tests for new functionality
4. Ensure all tests pass
5. Submit a pull request
---
## License
MIT
---