@clarigen/boot 4.0.2-alpha.1 → 4.1.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/dist/clarigen-types-BDegfBuU.mjs.map +1 -1
- package/dist/clarigen-types-D3BwZLwz.cjs.map +1 -1
- package/dist/index.d.cts +295 -283
- package/dist/index.d.mts +295 -283
- package/dist/{mainnet-DBn_zbzF.d.mts → mainnet-6iVVTzs7.d.mts} +645 -619
- package/dist/{testnet-DF69U_57.d.cts → mainnet-CA_U8Edv.d.cts} +648 -622
- package/dist/mainnet.d.cts +1 -1
- package/dist/mainnet.d.mts +1 -1
- package/dist/{testnet-BJQhGaWD.d.mts → testnet-BSA7GHn3.d.cts} +645 -619
- package/dist/{mainnet-BERJKQoZ.d.cts → testnet-uBFEy2N6.d.mts} +648 -622
- package/dist/testnet.d.cts +1 -1
- package/dist/testnet.d.mts +1 -1
- package/package.json +14 -13
package/dist/testnet.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as costs3, c as pox2, d as signers, f as signersVoting, i as costs2, l as pox3, n as costVoting, o as lockup, p as testnet, r as costs, s as pox, t as bns, u as pox4 } from "./testnet-
|
|
1
|
+
import { a as costs3, c as pox2, d as signers, f as signersVoting, i as costs2, l as pox3, n as costVoting, o as lockup, p as testnet, r as costs, s as pox, t as bns, u as pox4 } from "./testnet-BSA7GHn3.cjs";
|
|
2
2
|
export { bns, costVoting, costs, costs2, costs3, lockup, pox, pox2, pox3, pox4, signers, signersVoting, testnet };
|
package/dist/testnet.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as costs3, c as pox2, d as signers, f as signersVoting, i as costs2, l as pox3, n as costVoting, o as lockup, p as testnet, r as costs, s as pox, t as bns, u as pox4 } from "./testnet-
|
|
1
|
+
import { a as costs3, c as pox2, d as signers, f as signersVoting, i as costs2, l as pox3, n as costVoting, o as lockup, p as testnet, r as costs, s as pox, t as bns, u as pox4 } from "./testnet-uBFEy2N6.mjs";
|
|
2
2
|
export { bns, costVoting, costs, costs2, costs3, lockup, pox, pox2, pox3, pox4, signers, signersVoting, testnet };
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.0
|
|
2
|
+
"version": "4.1.0",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"types": "./dist/index.d.cts",
|
|
5
5
|
"exports": {
|
|
@@ -27,6 +27,17 @@
|
|
|
27
27
|
"bin": {
|
|
28
28
|
"clarigen": "./dist/run-cli.js"
|
|
29
29
|
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"start": "tsx src/run-cli.ts",
|
|
32
|
+
"dev": "tsdown --watch",
|
|
33
|
+
"build": "shx rm -rf dist && tsdown",
|
|
34
|
+
"test": "vitest run --passWithNoTests",
|
|
35
|
+
"lint": "eslint \"src/**/*.{ts,tsx}\" && prettier --check \"./**/*.{ts,js}\"",
|
|
36
|
+
"format:fix": "prettier -w \"./**/*.{ts,js}\"",
|
|
37
|
+
"typecheck": "tsc --noEmit -p tsconfig-test.json",
|
|
38
|
+
"type-stubs": "clarigen",
|
|
39
|
+
"publish": "bun publish"
|
|
40
|
+
},
|
|
30
41
|
"prettier": "@stacks/prettier-config",
|
|
31
42
|
"name": "@clarigen/boot",
|
|
32
43
|
"author": "Hank Stoever",
|
|
@@ -41,15 +52,5 @@
|
|
|
41
52
|
"access": "public"
|
|
42
53
|
},
|
|
43
54
|
"main": "./dist/index.cjs",
|
|
44
|
-
"module": "./dist/index.mjs"
|
|
45
|
-
|
|
46
|
-
"start": "tsx src/run-cli.ts",
|
|
47
|
-
"dev": "tsdown --watch",
|
|
48
|
-
"build": "shx rm -rf dist && tsdown",
|
|
49
|
-
"test": "vitest run --passWithNoTests",
|
|
50
|
-
"lint": "eslint \"src/**/*.{ts,tsx}\" && prettier --check \"./**/*.{ts,js}\"",
|
|
51
|
-
"format:fix": "prettier -w \"./**/*.{ts,js}\"",
|
|
52
|
-
"typecheck": "tsc --noEmit -p tsconfig-test.json",
|
|
53
|
-
"type-stubs": "clarigen"
|
|
54
|
-
}
|
|
55
|
-
}
|
|
55
|
+
"module": "./dist/index.mjs"
|
|
56
|
+
}
|