generated from antfu/starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from pawanpaudel93/feat/sqlite-support
feat: Add sqlite support
- Loading branch information
Showing
12 changed files
with
793 additions
and
443 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "ao-deploy", | ||
"type": "module", | ||
"version": "0.2.2", | ||
"version": "0.3.0", | ||
"packageManager": "[email protected]", | ||
"description": "A package for deploying AO contracts", | ||
"author": "Pawan Paudel <[email protected]>", | ||
|
@@ -41,15 +41,16 @@ | |
"dist" | ||
], | ||
"scripts": { | ||
"build": "unbuild", | ||
"build": "unbuild && tsx scripts/embedVersion", | ||
"dev": "unbuild --stub", | ||
"lint": "eslint .", | ||
"prepublishOnly": "nr build", | ||
"release": "bumpp && npm publish", | ||
"start": "esno src/index.ts", | ||
"test": "vitest", | ||
"typecheck": "tsc --noEmit", | ||
"prepare": "simple-git-hooks" | ||
"prepare": "simple-git-hooks", | ||
"prepack": "pnpm build" | ||
}, | ||
"dependencies": { | ||
"@permaweb/aoconnect": "^0.0.57", | ||
|
@@ -62,7 +63,7 @@ | |
"pretty-file-tree": "^1.0.1" | ||
}, | ||
"devDependencies": { | ||
"@antfu/eslint-config": "^2.16.1", | ||
"@antfu/eslint-config": "^2.24.1", | ||
"@antfu/ni": "^0.21.12", | ||
"@antfu/utils": "^0.7.7", | ||
"@types/node": "^20.12.8", | ||
|
@@ -73,6 +74,7 @@ | |
"pnpm": "^8.15.8", | ||
"rimraf": "^5.0.5", | ||
"simple-git-hooks": "^2.11.1", | ||
"tsx": "^4.16.5", | ||
"typescript": "^5.4.5", | ||
"unbuild": "^2.0.0", | ||
"vite": "^5.2.11", | ||
|
Oops, something went wrong.