@agoric/create-dapp 0.2.0 → 0.2.1-upgrade-23-dev-bd79330.0.bd79330

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/create-dapp",
3
- "version": "0.2.0",
3
+ "version": "0.2.1-upgrade-23-dev-bd79330.0.bd79330",
4
4
  "description": "Create an Agoric Javascript smart contract application",
5
5
  "type": "module",
6
6
  "bin": "src/create-dapp.js",
@@ -14,15 +14,15 @@
14
14
  "test:xs": "exit 0",
15
15
  "lint-fix": "yarn lint:eslint --fix",
16
16
  "lint": "yarn run -T run-s --continue-on-error 'lint:*'",
17
- "lint:eslint": "yarn run -T eslint .",
17
+ "lint:eslint": "node ../../scripts/eslint-repo.mjs .",
18
18
  "lint:types": "yarn run -T tsc"
19
19
  },
20
20
  "devDependencies": {
21
- "ava": "^5.3.0",
21
+ "ava": "^6.4.1",
22
22
  "c8": "^10.1.3"
23
23
  },
24
24
  "dependencies": {
25
- "agoric": "0.22.0"
25
+ "agoric": "0.22.1-upgrade-23-dev-bd79330.0.bd79330"
26
26
  },
27
27
  "keywords": [],
28
28
  "repository": {
@@ -39,8 +39,7 @@
39
39
  "files": [
40
40
  "test/**/*.test.*"
41
41
  ],
42
- "timeout": "2m",
43
- "workerThreads": false
42
+ "timeout": "2m"
44
43
  },
45
44
  "publishConfig": {
46
45
  "access": "public"
@@ -48,5 +47,5 @@
48
47
  "engines": {
49
48
  "node": "^20.9 || ^22.11"
50
49
  },
51
- "gitHead": "0922d0447ab8fae9d2d87415964403330b5ca313"
50
+ "gitHead": "bd79330f78dae2faf9cc3d8b10063567700da07b"
52
51
  }
@@ -1,7 +1,7 @@
1
1
  #! /usr/bin/env node
2
2
  /* global process */
3
- import { spawnSync } from 'child_process';
4
- import { createRequire } from 'module';
3
+ import { spawnSync } from 'node:child_process';
4
+ import { createRequire } from 'node:module';
5
5
 
6
6
  const require = createRequire(import.meta.url);
7
7