Skip to content

Commit 13ab851

Browse files
committed
update package.json
1 parent 214e7a1 commit 13ab851

File tree

3 files changed

+56
-5
lines changed

3 files changed

+56
-5
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
**/.DS_Store
33
**/dist
44
**/yarn-error.log
5-
lerna-debug.log
5+
lerna-debug.log
6+
7+
**/.idea/

packages/hyperwebjs/package.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,22 @@
2323
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
2424
"clean": "rimraf dist/**",
2525
"prepare": "npm run build",
26-
"codegen": "ts-node scripts/codegen.ts",
26+
"codegen": "ts-node ./scripts/codegen.ts",
2727
"build": "npm run clean; npm run codegen; tsc; tsc -p tsconfig.esm.json; npm run copy",
2828
"build:dev": "npm run clean; npm run codegen; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
2929
"lint": "eslint . --fix",
3030
"test": "jest",
3131
"test:watch": "jest --watch"
3232
},
3333
"devDependencies": {
34-
"@cosmology/telescope": "^1.10.0"
34+
"@cosmology/telescope": "^1.10.0",
35+
"prettier": "^3.3.3",
36+
"rimraf": "^6.0.1"
3537
},
3638
"dependencies": {
39+
"@cosmjs/amino": "0.32.3",
3740
"@cosmjs/encoding": "0.32.3",
3841
"@cosmjs/math": "0.32.3",
39-
"@cosmjs/amino": "0.32.3",
4042
"@cosmjs/proto-signing": "0.32.3",
4143
"@cosmjs/stargate": "0.32.3",
4244
"@cosmology/lcd": "^0.14.0"

yarn.lock

+48-1
Original file line numberDiff line numberDiff line change
@@ -4998,6 +4998,18 @@ glob@^10.0.0, glob@^10.2.2, glob@^10.3.12:
49984998
package-json-from-dist "^1.0.0"
49994999
path-scurry "^1.11.1"
50005000

5001+
glob@^11.0.0:
5002+
version "11.0.0"
5003+
resolved "https://registry.yarnpkg.com/glob/-/glob-11.0.0.tgz#6031df0d7b65eaa1ccb9b29b5ced16cea658e77e"
5004+
integrity sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==
5005+
dependencies:
5006+
foreground-child "^3.1.0"
5007+
jackspeak "^4.0.1"
5008+
minimatch "^10.0.0"
5009+
minipass "^7.1.2"
5010+
package-json-from-dist "^1.0.0"
5011+
path-scurry "^2.0.0"
5012+
50015013
glob@^7.0.0, glob@^7.0.5, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
50025014
version "7.2.3"
50035015
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
@@ -5673,6 +5685,13 @@ jackspeak@^3.1.2:
56735685
optionalDependencies:
56745686
"@pkgjs/parseargs" "^0.11.0"
56755687

5688+
jackspeak@^4.0.1:
5689+
version "4.0.2"
5690+
resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-4.0.2.tgz#11f9468a3730c6ff6f56823a820d7e3be9bef015"
5691+
integrity sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==
5692+
dependencies:
5693+
"@isaacs/cliui" "^8.0.2"
5694+
56765695
jake@^10.8.5:
56775696
version "10.9.2"
56785697
resolved "https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz#6ae487e6a69afec3a5e167628996b59f35ae2b7f"
@@ -6443,6 +6462,11 @@ lru-cache@^10.2.0:
64436462
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119"
64446463
integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==
64456464

6465+
lru-cache@^11.0.0:
6466+
version "11.0.1"
6467+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.0.1.tgz#3a732fbfedb82c5ba7bca6564ad3f42afcb6e147"
6468+
integrity sha512-CgeuL5uom6j/ZVrg7G/+1IXqRY8JXX4Hghfy5YE0EhoYQWvndP1kufu58cmZLNIDKnRhZrXfdS9urVWx98AipQ==
6469+
64466470
lru-cache@^5.1.1:
64476471
version "5.1.1"
64486472
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
@@ -6656,6 +6680,13 @@ [email protected]:
66566680
dependencies:
66576681
brace-expansion "^2.0.1"
66586682

6683+
minimatch@^10.0.0:
6684+
version "10.0.1"
6685+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz#ce0521856b453c86e25f2c4c0d03e6ff7ddc440b"
6686+
integrity sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==
6687+
dependencies:
6688+
brace-expansion "^2.0.1"
6689+
66596690
minimatch@^3.0.3, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
66606691
version "3.1.2"
66616692
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
@@ -7516,6 +7547,14 @@ path-scurry@^1.11.1, path-scurry@^1.6.1:
75167547
lru-cache "^10.2.0"
75177548
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
75187549

7550+
path-scurry@^2.0.0:
7551+
version "2.0.0"
7552+
resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.0.tgz#9f052289f23ad8bf9397a2a0425e7b8615c58580"
7553+
integrity sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==
7554+
dependencies:
7555+
lru-cache "^11.0.0"
7556+
minipass "^7.1.2"
7557+
75197558
path-type@^3.0.0:
75207559
version "3.0.0"
75217560
resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
@@ -7588,7 +7627,7 @@ prettier@^2.6.2:
75887627
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da"
75897628
integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==
75907629

7591-
prettier@^3.0.2:
7630+
prettier@^3.0.2, prettier@^3.3.3:
75927631
version "3.3.3"
75937632
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105"
75947633
integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==
@@ -8010,6 +8049,14 @@ [email protected]:
80108049
dependencies:
80118050
glob "^10.0.0"
80128051

8052+
rimraf@^6.0.1:
8053+
version "6.0.1"
8054+
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-6.0.1.tgz#ffb8ad8844dd60332ab15f52bc104bc3ed71ea4e"
8055+
integrity sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==
8056+
dependencies:
8057+
glob "^11.0.0"
8058+
package-json-from-dist "^1.0.0"
8059+
80138060
run-async@^2.2.0, run-async@^2.3.0, run-async@^2.4.0:
80148061
version "2.4.1"
80158062
resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"

0 commit comments

Comments
 (0)