@farcaster/hub-web 0.4.1 → 0.5.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/index.d.ts +6089 -1195
- package/dist/index.js +1373 -500
- package/dist/index.mjs +1376 -507
- package/package.json +5 -5
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@farcaster/hub-web",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.5.0",
|
4
4
|
"main": "./dist/index.js",
|
5
5
|
"module": "./dist/index.mjs",
|
6
6
|
"types": "./dist/index.d.ts",
|
@@ -19,17 +19,17 @@
|
|
19
19
|
"build": "tsup --config tsup.config.ts",
|
20
20
|
"clean": "rimraf ./dist",
|
21
21
|
"protoc": "protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./src/generated/ --ts_proto_opt=esModuleInterop=true,exportCommonSymbols=false,outputClientImpl=grpc-web,useOptionals=none,unrecognizedEnum=false,removeEnumPrefix=true,lowerCaseServiceMethods=true --proto_path=../../protobufs//schemas ../../protobufs/schemas/rpc.proto",
|
22
|
-
"lint": "
|
23
|
-
"lint:
|
22
|
+
"lint": "rome format src/ examples/ --write && rome check src/ examples/ --apply",
|
23
|
+
"lint:ci": "rome ci src/ examples/",
|
24
24
|
"prepublishOnly": "yarn run build"
|
25
25
|
},
|
26
26
|
"devDependencies": {
|
27
27
|
"eslint-config-custom": "*",
|
28
|
-
"
|
28
|
+
"rome-config-custom": "*",
|
29
29
|
"ts-proto": "^1.146.0"
|
30
30
|
},
|
31
31
|
"dependencies": {
|
32
|
-
"@farcaster/core": "^0.
|
32
|
+
"@farcaster/core": "^0.11.0",
|
33
33
|
"@improbable-eng/grpc-web": "^0.15.0",
|
34
34
|
"rxjs": "^7.8.0"
|
35
35
|
}
|