@layerzerolabs/oft-mint-burn-starknet 0.2.103 → 0.2.105
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/package.json +10 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@layerzerolabs/oft-mint-burn-starknet",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.105",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Starknet OFT Mint/Burn contracts for LayerZero v2",
|
|
6
6
|
"license": "MIT",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
],
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"tsup": "^8.4.0",
|
|
28
|
-
"@layerzerolabs/build-utils-starknet": "0.2.
|
|
29
|
-
"@layerzerolabs/tsup-configuration": "0.2.
|
|
30
|
-
"@layerzerolabs/
|
|
31
|
-
"@layerzerolabs/
|
|
32
|
-
"@layerzerolabs/
|
|
28
|
+
"@layerzerolabs/build-utils-starknet": "0.2.105",
|
|
29
|
+
"@layerzerolabs/tsup-configuration": "0.2.105",
|
|
30
|
+
"@layerzerolabs/typescript-configuration": "0.2.105",
|
|
31
|
+
"@layerzerolabs/vm-tooling-starknet": "0.2.105",
|
|
32
|
+
"@layerzerolabs/protocol-starknet-v2": "0.2.105"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"@layerzerolabs/protocol-starknet-v2": ">=0.2.0"
|
|
@@ -48,11 +48,13 @@
|
|
|
48
48
|
"build": "lz-tool scarb --release build && pnpm build:abi && pnpm build:verification && tsup",
|
|
49
49
|
"build:abi": "lz-tool extra starknet build-typescript-sdk oft_mint_burn target src/generated",
|
|
50
50
|
"build:verification": "generate-starknet-verification --package oft_mint_burn --path src/generated/verification",
|
|
51
|
-
"clean": "rm -rf
|
|
51
|
+
"clean": "rm -rf .turbo ./dist ./target ./node_modules && pnpm generated:clean",
|
|
52
52
|
"format": "lz-tool scarb fmt",
|
|
53
53
|
"format:check": "node --run format --check",
|
|
54
54
|
"generated:clean": "rm -rf ./target ./src/generated",
|
|
55
55
|
"lint": "pnpm format:check && lz-tool scarb lint --test",
|
|
56
|
-
"test": "lz-tool scarb test"
|
|
56
|
+
"test": "lz-tool scarb test",
|
|
57
|
+
"test:snapshot:check": "pnpm exec turbo-snapshot check",
|
|
58
|
+
"test:snapshot:update": "pnpm exec turbo-snapshot update"
|
|
57
59
|
}
|
|
58
60
|
}
|