@agoric/casting 0.4.3-dev-35e67be.0 → 0.4.3-dev-9de97ab.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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@agoric/casting",
3
- "version": "0.4.3-dev-35e67be.0+35e67be",
3
+ "version": "0.4.3-dev-9de97ab.0+9de97ab",
4
4
  "description": "Agoric's OCap broadcasting system",
5
5
  "type": "module",
6
6
  "main": "src/main.js",
7
7
  "repository": "https://github.com/Agoric/agoric-sdk",
8
8
  "scripts": {
9
9
  "build": "exit 0",
10
- "prepack": "tsc --build jsconfig.build.json",
10
+ "prepack": "tsc --build tsconfig.build.json",
11
11
  "postpack": "git clean -f '*.d.ts*'",
12
12
  "demo": "node -e 'import(\"./test/fake-rpc-server.js\").then(ns => ns.develop())'",
13
13
  "test": "ava",
@@ -15,17 +15,17 @@
15
15
  "test:xs": "exit 0",
16
16
  "lint-fix": "yarn lint:eslint --fix",
17
17
  "lint": "run-s --continue-on-error lint:*",
18
- "lint:types": "tsc -p jsconfig.json",
18
+ "lint:types": "tsc",
19
19
  "lint:eslint": "eslint --ext .js,.ts ."
20
20
  },
21
21
  "keywords": [],
22
22
  "author": "Agoric",
23
23
  "license": "Apache-2.0",
24
24
  "dependencies": {
25
- "@agoric/internal": "0.3.3-dev-35e67be.0+35e67be",
26
- "@agoric/notifier": "0.6.3-dev-35e67be.0+35e67be",
27
- "@agoric/spawner": "0.6.9-dev-35e67be.0+35e67be",
28
- "@agoric/store": "0.9.3-dev-35e67be.0+35e67be",
25
+ "@agoric/internal": "0.3.3-dev-9de97ab.0+9de97ab",
26
+ "@agoric/notifier": "0.6.3-dev-9de97ab.0+9de97ab",
27
+ "@agoric/spawner": "0.6.9-dev-9de97ab.0+9de97ab",
28
+ "@agoric/store": "0.9.3-dev-9de97ab.0+9de97ab",
29
29
  "@cosmjs/encoding": "^0.30.1",
30
30
  "@cosmjs/proto-signing": "^0.30.1",
31
31
  "@cosmjs/stargate": "^0.30.1",
@@ -38,7 +38,7 @@
38
38
  "node-fetch": "^2.6.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@agoric/cosmic-proto": "0.3.1-dev-35e67be.0+35e67be",
41
+ "@agoric/cosmic-proto": "0.3.1-dev-9de97ab.0+9de97ab",
42
42
  "@endo/ses-ava": "^0.2.41",
43
43
  "@types/node-fetch": "^2.6.2",
44
44
  "ava": "^5.3.0",
@@ -59,5 +59,5 @@
59
59
  "timeout": "20m",
60
60
  "workerThreads": false
61
61
  },
62
- "gitHead": "35e67bed9eae0896e32b549ad0d1fd02fb83a905"
62
+ "gitHead": "9de97aba9b46e464021f9970abdc0c957e49e3f5"
63
63
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "extends": [
3
- "./jsconfig.json",
3
+ "./tsconfig.json",
4
4
  "../../tsconfig-build-options.json"
5
5
  ]
6
6
  }
@@ -1,6 +1,10 @@
1
1
  // This file can contain .js-specific Typescript compiler config.
2
2
  {
3
3
  "extends": "../../tsconfig.json",
4
+ "compilerOptions": {
5
+ "allowSyntheticDefaultImports": true,
6
+ "maxNodeModuleJsDepth": 2,
7
+ },
4
8
  "include": [
5
9
  "*.js",
6
10
  "public/**/*.js",