Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Kubiczeek authored Sep 20, 2024
1 parent 957f295 commit 85e0826
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{
"name": "db-quickly",
"version": "1.0.3",
"version": "1.0.4",
"description": "Want to have some quickly accessible database for javascript? This is it!",
"main": "dist/index.js",
"type": "module",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"keywords": [
Expand All @@ -30,13 +29,6 @@
"repository": {
"url": "https://github.com/Kubiczeek/Database-quickly"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "pnpm eslint ./src --ext .ts",
"test": "vitest",
"ci": "pnpm run lint && pnpm run test && pnpm run build"
},
"author": "kubiczeek",
"license": "OSL",
"devDependencies": {
Expand All @@ -48,5 +40,12 @@
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "pnpm eslint ./src --ext .ts",
"test": "vitest",
"ci": "pnpm run lint && pnpm run test && pnpm run build"
}
}

0 comments on commit 85e0826

Please sign in to comment.