stxer 0.9.0 → 0.10.0
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/CHANGELOG.md +10 -0
- package/dist/stxer.cjs.development.js.map +1 -1
- package/dist/stxer.cjs.production.min.js.map +1 -1
- package/dist/stxer.esm.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +18 -19
- package/src/types.ts +0 -1
package/dist/types.d.ts
CHANGED
|
@@ -108,7 +108,7 @@ export interface ClarityAbiNonFungibleToken {
|
|
|
108
108
|
name: string;
|
|
109
109
|
type: ClarityAbiType;
|
|
110
110
|
}
|
|
111
|
-
export type ClarityEpoch = 'Epoch10' | 'Epoch20' | 'Epoch2_05' | 'Epoch21' | 'Epoch22' | 'Epoch23' | 'Epoch24' | 'Epoch25' | 'Epoch30' | 'Epoch31' | 'Epoch32' | 'Epoch33' | 'Epoch34' | '
|
|
111
|
+
export type ClarityEpoch = 'Epoch10' | 'Epoch20' | 'Epoch2_05' | 'Epoch21' | 'Epoch22' | 'Epoch23' | 'Epoch24' | 'Epoch25' | 'Epoch30' | 'Epoch31' | 'Epoch32' | 'Epoch33' | 'Epoch34' | 'Epoch40';
|
|
112
112
|
/**
|
|
113
113
|
* Wire-format Clarity version name as emitted by the stxer AST parser
|
|
114
114
|
* (`/contracts:parse-ast`). Used in {@link ClarityAbi.clarity_version}.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stxer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Kyle Fang",
|
|
6
6
|
"repository": {
|
|
@@ -17,22 +17,6 @@
|
|
|
17
17
|
"!dist/sample",
|
|
18
18
|
"CHANGELOG.md"
|
|
19
19
|
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"analyze": "size-limit --why",
|
|
22
|
-
"build": "dts build",
|
|
23
|
-
"lint": "biome check .",
|
|
24
|
-
"prepare": "dts build",
|
|
25
|
-
"size": "size-limit",
|
|
26
|
-
"start": "dts watch",
|
|
27
|
-
"test": "dts test",
|
|
28
|
-
"sample:counter": "tsx src/sample/counter.ts",
|
|
29
|
-
"sample:read": "tsx src/sample/read.ts",
|
|
30
|
-
"sample:instant": "tsx src/sample/instant.ts",
|
|
31
|
-
"sample:failure-modes": "tsx src/sample/failure-modes.ts",
|
|
32
|
-
"sample:batch-categories": "tsx src/sample/batch-categories.ts",
|
|
33
|
-
"sample:verify-types": "tsx src/sample/verify-types.ts",
|
|
34
|
-
"sample:vitest": "vitest run"
|
|
35
|
-
},
|
|
36
20
|
"husky": {
|
|
37
21
|
"hooks": {
|
|
38
22
|
"pre-commit": "dts lint && biome check ."
|
|
@@ -69,7 +53,7 @@
|
|
|
69
53
|
"husky": "^9.1.7",
|
|
70
54
|
"size-limit": "12.1.0",
|
|
71
55
|
"tsx": "^4.23.1",
|
|
72
|
-
"typescript": "
|
|
56
|
+
"typescript": "7.0.2",
|
|
73
57
|
"vitest": "^4.1.10"
|
|
74
58
|
},
|
|
75
59
|
"dependencies": {
|
|
@@ -80,5 +64,20 @@
|
|
|
80
64
|
"c32check": "^2.0.0",
|
|
81
65
|
"clarity-abi": "^0.1.0",
|
|
82
66
|
"ts-clarity": "^0.1.1"
|
|
67
|
+
},
|
|
68
|
+
"scripts": {
|
|
69
|
+
"analyze": "size-limit --why",
|
|
70
|
+
"build": "dts build",
|
|
71
|
+
"lint": "biome check .",
|
|
72
|
+
"size": "size-limit",
|
|
73
|
+
"start": "dts watch",
|
|
74
|
+
"test": "dts test",
|
|
75
|
+
"sample:counter": "tsx src/sample/counter.ts",
|
|
76
|
+
"sample:read": "tsx src/sample/read.ts",
|
|
77
|
+
"sample:instant": "tsx src/sample/instant.ts",
|
|
78
|
+
"sample:failure-modes": "tsx src/sample/failure-modes.ts",
|
|
79
|
+
"sample:batch-categories": "tsx src/sample/batch-categories.ts",
|
|
80
|
+
"sample:verify-types": "tsx src/sample/verify-types.ts",
|
|
81
|
+
"sample:vitest": "vitest run"
|
|
83
82
|
}
|
|
84
|
-
}
|
|
83
|
+
}
|