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 #10 from pawanpaudel93/feat/minify
feat: add contract code minification/modification
- Loading branch information
Showing
12 changed files
with
1,623 additions
and
1,288 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "ao-deploy", | ||
"type": "module", | ||
"version": "0.5.0", | ||
"version": "0.6.0", | ||
"packageManager": "[email protected]", | ||
"description": "A package for deploying AO contracts", | ||
"author": "Pawan Paudel <[email protected]>", | ||
|
@@ -46,6 +46,7 @@ | |
"lint": "eslint .", | ||
"prepublishOnly": "nr build", | ||
"release": "bumpp && npm publish", | ||
"release:beta": "bumpp --tag beta && npm publish --tag beta", | ||
"start": "esno src/index.ts", | ||
"test": "vitest", | ||
"typecheck": "tsc --noEmit", | ||
|
@@ -55,39 +56,43 @@ | |
"fmt:check": "prettier --check ." | ||
}, | ||
"dependencies": { | ||
"@permaweb/aoconnect": "^0.0.58", | ||
"arweave": "^1.15.1", | ||
"@permaweb/aoconnect": "^0.0.62", | ||
"arweave": "^1.15.5", | ||
"chalk": "^5.3.0", | ||
"commander": "^12.0.0", | ||
"jiti": "^1.21.0", | ||
"commander": "^12.1.0", | ||
"jiti": "^1.21.6", | ||
"p-limit": "^4.0.0", | ||
"pretty-file-tree": "^1.0.1" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.9.0", | ||
"@types/node": "^20.12.8", | ||
"bumpp": "^9.4.1", | ||
"eslint": "^8.57.0", | ||
"@eslint/js": "^9.16.0", | ||
"@types/node": "^20.17.9", | ||
"bumpp": "^9.8.1", | ||
"eslint": "^8.57.1", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"esno": "^4.7.0", | ||
"globals": "^15.9.0", | ||
"lint-staged": "^15.2.2", | ||
"pnpm": "^8.15.8", | ||
"prettier": "^3.3.3", | ||
"rimraf": "^5.0.5", | ||
"esno": "^4.8.0", | ||
"globals": "^15.12.0", | ||
"lint-staged": "^15.2.10", | ||
"lua-format": "^1.5.2", | ||
"pnpm": "^8.15.9", | ||
"prettier": "^3.4.1", | ||
"rimraf": "^5.0.10", | ||
"simple-git-hooks": "^2.11.1", | ||
"tsx": "^4.16.5", | ||
"typescript": "^5.4.5", | ||
"typescript-eslint": "^8.1.0", | ||
"tsx": "^4.19.2", | ||
"typescript": "^5.7.2", | ||
"typescript-eslint": "^8.16.0", | ||
"unbuild": "^2.0.0", | ||
"vite": "^5.2.11", | ||
"vite": "^5.4.11", | ||
"vitest": "^1.6.0" | ||
}, | ||
"simple-git-hooks": { | ||
"pre-commit": "pnpm lint-staged" | ||
}, | ||
"lint-staged": { | ||
"*": "eslint . --fix" | ||
}, | ||
"peerDependencies": { | ||
"lua-format": "^1.5.2" | ||
} | ||
} |
Oops, something went wrong.