arc200-client 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +16 -20
- package/dist/index.d.ts +16 -20
- package/dist/index.js +49 -358
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +50 -364
- package/dist/index.mjs.map +1 -1
- package/package.json +20 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arc200-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"compile-contract": "algokit compile ts contracts --output-source-map --out-dir artifacts",
|
|
14
14
|
"generate-components": "algokit-generate-component contracts/artifacts/Arc200.arc32.json contracts/artifacts/components",
|
|
15
15
|
"build": "npm run compile-contract && npm run generate-client",
|
|
16
|
-
"test": "
|
|
16
|
+
"test": "vitest run --coverage",
|
|
17
17
|
"lint": "eslint contracts",
|
|
18
18
|
"fix": "eslint contracts --fix",
|
|
19
19
|
"build-package": "tsup src/index.ts --format cjs,esm --clean --sourcemap index --dts src/index.ts --dts-resolve",
|
|
@@ -21,27 +21,31 @@
|
|
|
21
21
|
"publishCmd": "npm publish"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@algorandfoundation/
|
|
25
|
-
"@algorandfoundation/algokit-
|
|
26
|
-
"@algorandfoundation/algokit-utils": "^9.0.0",
|
|
24
|
+
"@algorandfoundation/algokit-client-generator": "^6.0.1",
|
|
25
|
+
"@algorandfoundation/algokit-utils": "^9.2.0",
|
|
27
26
|
"@algorandfoundation/algokit-utils-debug": "^1.0.4",
|
|
28
|
-
"@algorandfoundation/algorand-typescript
|
|
29
|
-
"@algorandfoundation/
|
|
30
|
-
"
|
|
31
|
-
"
|
|
27
|
+
"@algorandfoundation/algorand-typescript": "^1.0.1",
|
|
28
|
+
"@algorandfoundation/algorand-typescript-testing": "^1.0.1",
|
|
29
|
+
"@algorandfoundation/puya-ts": "^1.0.1",
|
|
30
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
31
|
+
"algosdk": "^3.5.2",
|
|
32
|
+
"tsup": "^8.5.1",
|
|
33
|
+
"vitest": "^3.1.3"
|
|
32
34
|
},
|
|
33
35
|
"devDependencies": {
|
|
34
36
|
"@jest/globals": "^29.7.0",
|
|
35
|
-
"
|
|
37
|
+
"@tsconfig/node22": "^22.0.5",
|
|
38
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
39
|
+
"eslint": "^8.57.1",
|
|
36
40
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
37
41
|
"eslint-config-airbnb-typescript": "^17.1.0",
|
|
38
|
-
"eslint-config-prettier": "^9.1.
|
|
39
|
-
"eslint-plugin-import": "^2.
|
|
40
|
-
"eslint-plugin-prettier": "^5.
|
|
42
|
+
"eslint-config-prettier": "^9.1.2",
|
|
43
|
+
"eslint-plugin-import": "^2.32.0",
|
|
44
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
41
45
|
"jest": "^29.7.0",
|
|
42
|
-
"prettier": "^3.
|
|
43
|
-
"ts-jest": "^29.
|
|
44
|
-
"typescript": "^5.
|
|
46
|
+
"prettier": "^3.7.4",
|
|
47
|
+
"ts-jest": "^29.4.6",
|
|
48
|
+
"typescript": "^5.9.3"
|
|
45
49
|
},
|
|
46
50
|
"overrides": {
|
|
47
51
|
"esbuild": "0.25.0"
|