Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions examples/production/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,12 @@
"@algorandfoundation/algorand-typescript": "^1.0.1"
},
"devDependencies": {
"@algorandfoundation/algokit-client-generator": "^6.0.0",
"@algorandfoundation/algokit-utils": "^9.0.0",
"@algorandfoundation/algokit-utils-debug": "^1.0.4",
"@algorandfoundation/algokit-client-generator": "^7.0.0-alpha.2",
"@algorandfoundation/algokit-utils": "^10.0.0-alpha.20",
"@algorandfoundation/algokit-utils-debug": "^2.0.0-alpha.1",
"@algorandfoundation/puya-ts": "^1.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/node22": "^22.0.0",
"algosdk": "^3.0.0",
"better-npm-audit": "^3.11.0",
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Config } from '@algorandfoundation/algokit-utils'
import { Config, Address } from '@algorandfoundation/algokit-utils'
import { registerDebugEventHandlers } from '@algorandfoundation/algokit-utils-debug'
import { algorandFixture } from '@algorandfoundation/algokit-utils/testing'
import { Address } from 'algosdk'
import { beforeAll, beforeEach, describe, expect, test } from 'vitest'
import { HelloWorldFactory } from '../artifacts/hello_world/HelloWorldClient'

Expand Down
7 changes: 3 additions & 4 deletions examples/starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@
"@algorandfoundation/algorand-typescript": "^1.0.1"
},
"devDependencies": {
"@algorandfoundation/algokit-client-generator": "^6.0.0",
"@algorandfoundation/algokit-utils": "^9.0.0",
"@algorandfoundation/algokit-utils-debug": "^1.0.4",
"@algorandfoundation/algokit-client-generator": "^7.0.0-alpha.2",
"@algorandfoundation/algokit-utils": "^10.0.0-alpha.20",
"@algorandfoundation/algokit-utils-debug": "^2.0.0-alpha.1",
"@algorandfoundation/puya-ts": "^1.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/node22": "^22.0.0",
"algosdk": "^3.0.0",
"dotenv": "^16.4.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Config } from '@algorandfoundation/algokit-utils'
import { Config, Address } from '@algorandfoundation/algokit-utils'
import { algorandFixture } from '@algorandfoundation/algokit-utils/testing'
import { Address } from 'algosdk'
import { beforeAll, beforeEach, describe, expect, test } from 'vitest'
import { {{ contract_name.split('_')|map('capitalize')|join }}Factory } from '../artifacts/{{ contract_name }}/{{ contract_name.split('_')|map('capitalize')|join }}Client'

Expand Down
7 changes: 3 additions & 4 deletions template_content/package.json.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,12 @@
"@algorandfoundation/algorand-typescript": "^1.0.1"
},
"devDependencies": {
"@algorandfoundation/algokit-client-generator": "^6.0.0",
"@algorandfoundation/algokit-utils": "^9.0.0",
"@algorandfoundation/algokit-utils-debug": "^1.0.4",
"@algorandfoundation/algokit-client-generator": "^7.0.0-alpha.2",
"@algorandfoundation/algokit-utils": "^10.0.0-alpha.20",
"@algorandfoundation/algokit-utils-debug": "^2.0.0-alpha.1",
"@algorandfoundation/puya-ts": "^1.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/node22": "^22.0.0",
"algosdk": "^3.0.0",
{%- if use_audit %}
"better-npm-audit": "^3.11.0",
{%- endif %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Config } from '@algorandfoundation/algokit-utils'
import { Config, Address } from '@algorandfoundation/algokit-utils'
import { registerDebugEventHandlers } from '@algorandfoundation/algokit-utils-debug'
import { algorandFixture } from '@algorandfoundation/algokit-utils/testing'
import { Address } from 'algosdk'
import { beforeAll, beforeEach, describe, expect, test } from 'vitest'
import { {{ contract_name.split('_')|map('capitalize')|join }}Factory } from '../artifacts/{{ contract_name }}/{{ contract_name.split('_')|map('capitalize')|join }}Client'

Expand Down