Skip to content

Commit

Permalink
v4.0.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-zaremba committed May 24, 2022
1 parent e8cc03d commit 05ed9d4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 75 deletions.
26 changes: 5 additions & 21 deletions packages/algob/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@algo-builder/algob",
"version": "3.2.0",
"version": "4.0.0",
"author": "Robert Zaremba (https://zaremba.ch)",
"license": "Apache-2.0",
"homepage": "https://algobuilder.dev",
Expand Down Expand Up @@ -39,13 +39,7 @@
"publishConfig": {
"access": "public"
},
"files": [
"build/",
"LICENSE",
"README.md",
"setup_dev_project.sh",
"sample-project/"
],
"files": ["build/", "LICENSE", "README.md", "setup_dev_project.sh", "sample-project/"],
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/debug": "^4.1.7",
Expand Down Expand Up @@ -95,19 +89,9 @@
"zod": "^3.13.4"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"build",
"test",
"coverage",
".nyc_output"
],
"reporter": [
"text",
"lcovonly"
],
"extension": [".ts"],
"exclude": ["build", "test", "coverage", ".nyc_output"],
"reporter": ["text", "lcovonly"],
"all": true
}
}
33 changes: 6 additions & 27 deletions packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
{
"name": "@algo-builder/runtime",
"version": "3.2.0",
"version": "4.0.0",
"license": "Apache-2.0",
"homepage": "https://algobuilder.dev",
"repository": "https://github.com/scale-it/algo-builder.git",
"description": "JavaScript implementation of Algorand runtime (transaction execution + TEAL interpreter)",
"keywords": [
"smart-contracts",
"blockchain",
"algorand",
"dapps",
"javascript",
"tooling"
],
"keywords": ["smart-contracts", "blockchain", "algorand", "dapps", "javascript", "tooling"],
"main": "build/index.js",
"types": "build/index.d.ts",
"engines": {
Expand Down Expand Up @@ -67,25 +60,11 @@
"access": "public",
"no-git-tag-version": true
},
"files": [
"build/",
"LICENSE",
"README.md"
],
"files": ["build/", "LICENSE", "README.md"],
"nyc": {
"extension": [
".ts"
],
"exclude": [
"build",
"test",
"coverage",
".nyc_output"
],
"reporter": [
"text",
"lcovonly"
],
"extension": [".ts"],
"exclude": ["build", "test", "coverage", ".nyc_output"],
"reporter": ["text", "lcovonly"],
"all": true
}
}
33 changes: 6 additions & 27 deletions packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
{
"name": "@algo-builder/web",
"version": "3.2.0",
"version": "4.0.0",
"license": "Apache-2.0",
"homepage": "https://algobuilder.dev",
"repository": "https://github.com/scale-it/algo-builder.git",
"description": "package for the web",
"keywords": [
"smart-contracts",
"blockchain",
"algorand",
"dapps",
"javascript",
"tooling"
],
"keywords": ["smart-contracts", "blockchain", "algorand", "dapps", "javascript", "tooling"],
"main": "build/index.js",
"types": "build/index.d.ts",
"engines": {
Expand Down Expand Up @@ -58,25 +51,11 @@
"access": "public",
"no-git-tag-version": true
},
"files": [
"build/",
"LICENSE",
"README.md"
],
"files": ["build/", "LICENSE", "README.md"],
"nyc": {
"extension": [
".ts"
],
"exclude": [
"build",
"test",
"coverage",
".nyc_output"
],
"reporter": [
"text",
"lcovonly"
],
"extension": [".ts"],
"exclude": ["build", "test", "coverage", ".nyc_output"],
"reporter": ["text", "lcovonly"],
"all": true
}
}

0 comments on commit 05ed9d4

Please sign in to comment.