create-blocklet 0.6.5 → 0.6.6

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/lib/did.js CHANGED
@@ -1,10 +1,10 @@
1
1
  /* eslint-disable import/prefer-default-export */
2
+ import ora from 'ora';
2
3
  import Mcrypto from '@ocap/mcrypto';
3
4
  import * as jdenticon from 'jdenticon';
4
5
  import { toHex } from '@ocap/util';
5
6
  import { fromPublicKey } from '@arcblock/did';
6
- import { execSync } from 'child_process';
7
- import { trimServerOutputVersion } from './server.js';
7
+ import { spawn } from 'child_process';
8
8
  import { BLOCKLET_COMMAND } from './constant.js';
9
9
 
10
10
  const { types } = Mcrypto;
@@ -30,14 +30,40 @@ export async function getBlockletDidList(monikerList = [], connectUrl) {
30
30
  if (connectUrl) {
31
31
  command += ` --connectUrl=${connectUrl}`;
32
32
  }
33
- const output = execSync(command);
34
- const pureOutput = await trimServerOutputVersion(output.toString('utf8'));
35
- const didStrList = pureOutput.split('\n').pop();
33
+ const runCommand = new Promise((resolve, reject) => {
34
+ let lastMessage = '';
35
+ const childProcess = spawn('blocklet', ['init', '--monikers=react-dapp']);
36
+ const spinner = ora().start();
37
+ childProcess.stdout.on('data', (data) => {
38
+ const message = data.toString('utf8') || '';
39
+ if (message.includes('Redirecting to')) {
40
+ spinner.text = message.replace('✔ \n', '');
41
+ } else {
42
+ lastMessage = message;
43
+ }
44
+ });
45
+ childProcess.stderr.on('data', (data) => {
46
+ const message = data.toString('utf8') || '';
47
+ if (!message.includes('Waiting for connect:')) {
48
+ spinner.fail(message);
49
+ }
50
+ });
51
+ childProcess.on('close', () => {
52
+ spinner.succeed();
53
+ resolve(lastMessage);
54
+ });
55
+ childProcess.on('error', (err) => {
56
+ spinner.fail();
57
+ reject(err);
58
+ });
59
+ });
60
+ const didStrList = await runCommand;
36
61
  return didStrList
37
62
  .trim()
38
63
  .split(',')
39
64
  .filter((x) => x !== '');
40
- } catch {
65
+ } catch (e) {
66
+ console.error(e);
41
67
  throw new Error('Failed to generate blocklet did');
42
68
  }
43
69
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-blocklet",
3
- "version": "0.6.5",
3
+ "version": "0.6.6",
4
4
  "exports": "./index.js",
5
5
  "type": "module",
6
6
  "repository": "git@github.com:blocklet/create-blocklet.git",
@@ -29,25 +29,25 @@
29
29
  "test:run": "vitest run"
30
30
  },
31
31
  "dependencies": {
32
- "@arcblock/did": "^1.18.78",
33
- "@ocap/mcrypto": "^1.18.78",
34
- "@ocap/util": "^1.18.78",
32
+ "@arcblock/did": "^1.18.84",
33
+ "@ocap/mcrypto": "^1.18.84",
34
+ "@ocap/util": "^1.18.84",
35
35
  "boxen": "^6.2.1",
36
36
  "ejs": "^3.1.9",
37
37
  "envfile": "^6.18.0",
38
38
  "figlet": "^1.6.0",
39
39
  "gradient-string": "^2.0.2",
40
40
  "jdenticon": "^3.2.0",
41
- "ora": "^6.3.0",
41
+ "ora": "^6.3.1",
42
42
  "prompts": "^2.4.2",
43
- "semver": "^7.5.0",
43
+ "semver": "^7.5.1",
44
44
  "terminal-link": "^3.0.0",
45
45
  "zx": "7.0.7"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@arcblock/eslint-config-base": "0.2.2",
49
- "eslint": "^8.40.0",
49
+ "eslint": "^8.42.0",
50
50
  "prettier": "^2.8.8",
51
- "vitest": "^0.19.1"
51
+ "vitest": "^0.32.0"
52
52
  }
53
53
  }
@@ -15,8 +15,8 @@
15
15
  "bump-version": "zx --quiet scripts/bump-version.mjs"
16
16
  },
17
17
  "dependencies": {
18
- "@xmark/cli": "^2.5.4",
19
- "@xmark/theme-docs": "^2.5.4",
18
+ "@xmark/cli": "^2.5.5",
19
+ "@xmark/theme-docs": "^2.5.5",
20
20
  "bumpp": "^8.2.1",
21
21
  "rimraf": "^3.0.2",
22
22
  "zx": "^7.2.2"
@@ -31,15 +31,15 @@
31
31
  "license": "ISC",
32
32
  "dependencies": {
33
33
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
34
- "@blocklet/sdk": "^1.16.7",
35
- "@ocap/client": "^1.18.78",
34
+ "@blocklet/sdk": "^1.16.10",
35
+ "@ocap/client": "^1.18.84",
36
36
  "dotenv-flow": "^3.2.0",
37
37
  "express": "^4.18.2"
38
38
  },
39
39
  "devDependencies": {
40
- "@arcblock/eslint-config-base": "^0.2.3",
40
+ "@arcblock/eslint-config-base": "^0.2.4",
41
41
  "bumpp": "^8.2.1",
42
- "eslint": "^8.40.0",
42
+ "eslint": "^8.42.0",
43
43
  "husky": "^8.0.3",
44
44
  "lint-staged": "^12.5.0",
45
45
  "nodemon": "^2.0.22",
@@ -25,7 +25,7 @@
25
25
  "devDependencies": {
26
26
  "@arcblock/eslint-config": "0.2.2",
27
27
  "bumpp": "^7.2.0",
28
- "eslint": "^8.40.0",
28
+ "eslint": "^8.42.0",
29
29
  "husky": "^4.3.8",
30
30
  "prettier": "^2.8.8",
31
31
  "zx": "^7.2.2"
@@ -32,35 +32,35 @@
32
32
  "license": "ISC",
33
33
  "dependencies": {
34
34
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
35
- "@blocklet/sdk": "^1.16.7",
36
- "@ocap/client": "^1.18.78",
37
- "@nestjs/common": "^9.0.0",
38
- "@nestjs/core": "^9.0.5",
39
- "@nestjs/platform-express": "^9.0.0",
35
+ "@blocklet/sdk": "^1.16.10",
36
+ "@nestjs/common": "^9.4.2",
37
+ "@nestjs/core": "^9.4.2",
38
+ "@nestjs/platform-express": "^9.4.2",
39
+ "@ocap/client": "^1.18.84",
40
40
  "dotenv-flow": "^3.2.0",
41
41
  "express": "^4.18.2",
42
42
  "reflect-metadata": "^0.1.13",
43
- "rxjs": "^7.5.5"
43
+ "rxjs": "^7.8.1"
44
44
  },
45
45
  "devDependencies": {
46
- "@arcblock/eslint-config-base": "^0.2.3",
47
- "@nestjs/cli": "^9.0.0",
48
- "@nestjs/schematics": "^9.0.0",
49
- "@types/express": "^4.17.13",
50
- "@types/node": "^18.0.3",
51
- "@typescript-eslint/eslint-plugin": "^5.30.5",
52
- "@typescript-eslint/parser": "^5.30.5",
46
+ "@arcblock/eslint-config-base": "^0.2.4",
47
+ "@nestjs/cli": "^9.5.0",
48
+ "@nestjs/schematics": "^9.2.0",
49
+ "@types/express": "^4.17.17",
50
+ "@types/node": "^18.16.16",
51
+ "@typescript-eslint/eslint-plugin": "^5.59.9",
52
+ "@typescript-eslint/parser": "^5.59.9",
53
53
  "bumpp": "^8.2.1",
54
- "eslint": "^8.40.0",
54
+ "eslint": "^8.42.0",
55
55
  "husky": "^8.0.3",
56
56
  "lint-staged": "^12.5.0",
57
57
  "nodemon": "^2.0.22",
58
58
  "prettier": "^2.8.8",
59
59
  "rimraf": "^3.0.2",
60
60
  "source-map-support": "^0.5.21",
61
- "ts-node": "^10.8.2",
62
- "tsconfig-paths": "^4.0.0",
63
- "typescript": "^4.7.4",
61
+ "ts-node": "^10.9.1",
62
+ "tsconfig-paths": "^4.2.0",
63
+ "typescript": "^4.9.5",
64
64
  "zx": "^7.2.2"
65
65
  }
66
66
  }
@@ -28,12 +28,12 @@
28
28
  ]
29
29
  },
30
30
  "dependencies": {
31
- "@arcblock/did-auth": "^1.18.78",
31
+ "@arcblock/did-auth": "^1.18.84",
32
32
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
33
- "@blocklet/sdk": "^1.16.7",
34
- "@ocap/client": "^1.18.78",
35
- "@ocap/mcrypto": "^1.18.78",
36
- "@ocap/wallet": "^1.18.78",
33
+ "@blocklet/sdk": "^1.16.10",
34
+ "@ocap/client": "^1.18.84",
35
+ "@ocap/mcrypto": "^1.18.84",
36
+ "@ocap/wallet": "^1.18.84",
37
37
  "dotenv-flow": "^3.2.0",
38
38
  "express": "^4.18.2",
39
39
  "next": "12.2.3",
@@ -40,12 +40,12 @@
40
40
  ]
41
41
  },
42
42
  "dependencies": {
43
- "@arcblock/did-auth": "^1.18.78",
43
+ "@arcblock/did-auth": "^1.18.84",
44
44
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
45
- "@blocklet/sdk": "^1.16.7",
46
- "@ocap/client": "^1.18.78",
47
- "@ocap/mcrypto": "^1.18.78",
48
- "@ocap/wallet": "^1.18.78",
45
+ "@blocklet/sdk": "^1.16.10",
46
+ "@ocap/client": "^1.18.84",
47
+ "@ocap/mcrypto": "^1.18.84",
48
+ "@ocap/wallet": "^1.18.84",
49
49
  "axios": "^0.27.2",
50
50
  "compression": "^1.7.4",
51
51
  "cookie-parser": "^1.4.6",
@@ -56,22 +56,22 @@
56
56
  "express-history-api-fallback": "^2.2.1",
57
57
  "react": "^18.2.0",
58
58
  "react-dom": "^18.2.0",
59
- "react-router-dom": "^6.11.1",
59
+ "react-router-dom": "^6.12.1",
60
60
  "rimraf": "^3.0.2"
61
61
  },
62
62
  "devDependencies": {
63
- "@arcblock/eslint-config": "^0.2.3",
63
+ "@arcblock/eslint-config": "^0.2.4",
64
64
  "@vitejs/plugin-react": "^2.2.0",
65
65
  "bumpp": "^8.2.1",
66
66
  "cross-env": "^7.0.3",
67
- "eslint": "^8.40.0",
67
+ "eslint": "^8.42.0",
68
68
  "husky": "^8.0.3",
69
69
  "lint-staged": "^12.5.0",
70
70
  "nodemon": "^2.0.22",
71
71
  "npm-run-all": "^4.1.5",
72
72
  "prettier": "^2.8.8",
73
- "vite": "^4.3.5",
74
- "vite-plugin-blocklet": "^0.6.5",
73
+ "vite": "^4.3.9",
74
+ "vite-plugin-blocklet": "^0.6.6",
75
75
  "vite-plugin-node-polyfills": "^0.7.0",
76
76
  "vite-plugin-svgr": "^2.4.0",
77
77
  "zx": "^7.2.2"
@@ -38,12 +38,12 @@
38
38
  ]
39
39
  },
40
40
  "dependencies": {
41
- "@arcblock/did-auth": "^1.18.78",
41
+ "@arcblock/did-auth": "^1.18.84",
42
42
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
43
- "@blocklet/sdk": "^1.16.7",
44
- "@ocap/client": "^1.18.78",
45
- "@ocap/mcrypto": "^1.18.78",
46
- "@ocap/wallet": "^1.18.78",
43
+ "@blocklet/sdk": "^1.16.10",
44
+ "@ocap/client": "^1.18.84",
45
+ "@ocap/mcrypto": "^1.18.84",
46
+ "@ocap/wallet": "^1.18.84",
47
47
  "axios": "^0.27.2",
48
48
  "compression": "^1.7.4",
49
49
  "cookie-parser": "^1.4.6",
@@ -54,24 +54,24 @@
54
54
  "express-history-api-fallback": "^2.2.1",
55
55
  "react": "^18.2.0",
56
56
  "react-dom": "^18.2.0",
57
- "react-router-dom": "^6.11.1",
57
+ "react-router-dom": "^6.12.1",
58
58
  "rimraf": "^3.0.2"
59
59
  },
60
60
  "devDependencies": {
61
- "@arcblock/eslint-config": "^0.2.3",
62
- "@arcblock/eslint-config-ts": "^0.2.3",
61
+ "@arcblock/eslint-config": "^0.2.4",
62
+ "@arcblock/eslint-config-ts": "^0.2.4",
63
63
  "@types/compression": "^1.7.2",
64
64
  "@types/cookie-parser": "^1.4.3",
65
65
  "@types/cors": "^2.8.13",
66
66
  "@types/dotenv-flow": "^3.2.0",
67
67
  "@types/express": "^4.17.17",
68
- "@types/node": "^18.16.8",
69
- "@types/react": "^18.2.6",
68
+ "@types/node": "^18.16.16",
69
+ "@types/react": "^18.2.9",
70
70
  "@types/react-dom": "^18.2.4",
71
71
  "@vitejs/plugin-react": "^2.2.0",
72
72
  "bumpp": "^8.2.1",
73
73
  "cross-env": "^7.0.3",
74
- "eslint": "^8.40.0",
74
+ "eslint": "^8.42.0",
75
75
  "husky": "^8.0.3",
76
76
  "import-sort-style-module": "^6.0.0",
77
77
  "lint-staged": "^12.5.0",
@@ -81,8 +81,8 @@
81
81
  "prettier-plugin-import-sort": "^0.0.7",
82
82
  "ts-node": "^10.9.1",
83
83
  "typescript": "^4.9.5",
84
- "vite": "^4.3.5",
85
- "vite-plugin-blocklet": "^0.6.5",
84
+ "vite": "^4.3.9",
85
+ "vite-plugin-blocklet": "^0.6.6",
86
86
  "vite-plugin-node-polyfills": "^0.7.0",
87
87
  "vite-plugin-svgr": "^2.4.0",
88
88
  "zx": "^7.2.2"
@@ -40,12 +40,12 @@
40
40
  ]
41
41
  },
42
42
  "dependencies": {
43
- "@arcblock/did-auth": "^1.18.78",
43
+ "@arcblock/did-auth": "^1.18.84",
44
44
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
45
- "@blocklet/sdk": "^1.16.7",
46
- "@ocap/client": "^1.18.78",
47
- "@ocap/mcrypto": "^1.18.78",
48
- "@ocap/wallet": "^1.18.78",
45
+ "@blocklet/sdk": "^1.16.10",
46
+ "@ocap/client": "^1.18.84",
47
+ "@ocap/mcrypto": "^1.18.84",
48
+ "@ocap/wallet": "^1.18.84",
49
49
  "axios": "^0.27.2",
50
50
  "compression": "^1.7.4",
51
51
  "cookie-parser": "^1.4.6",
@@ -57,22 +57,22 @@
57
57
  "gun": "^0.2020.1239",
58
58
  "react": "^18.2.0",
59
59
  "react-dom": "^18.2.0",
60
- "react-router-dom": "^6.11.1"
60
+ "react-router-dom": "^6.12.1"
61
61
  },
62
62
  "devDependencies": {
63
- "@arcblock/eslint-config": "^0.2.3",
63
+ "@arcblock/eslint-config": "^0.2.4",
64
64
  "@vitejs/plugin-react": "^2.2.0",
65
65
  "bumpp": "^8.2.1",
66
66
  "cross-env": "^7.0.3",
67
- "eslint": "^8.40.0",
67
+ "eslint": "^8.42.0",
68
68
  "husky": "^8.0.3",
69
69
  "lint-staged": "^12.5.0",
70
70
  "nodemon": "^2.0.22",
71
71
  "npm-run-all": "^4.1.5",
72
72
  "prettier": "^2.8.8",
73
73
  "rimraf": "^3.0.2",
74
- "vite": "^4.3.5",
75
- "vite-plugin-blocklet": "^0.6.5",
74
+ "vite": "^4.3.9",
75
+ "vite-plugin-blocklet": "^0.6.6",
76
76
  "vite-plugin-node-polyfills": "^0.7.0",
77
77
  "vite-plugin-svgr": "^2.4.0",
78
78
  "zx": "^7.2.2"
@@ -41,19 +41,19 @@
41
41
  "dependencies": {
42
42
  "react": "^18.2.0",
43
43
  "react-dom": "^18.2.0",
44
- "react-router-dom": "^6.11.1"
44
+ "react-router-dom": "^6.12.1"
45
45
  },
46
46
  "devDependencies": {
47
- "@arcblock/eslint-config": "^0.2.3",
47
+ "@arcblock/eslint-config": "^0.2.4",
48
48
  "@vitejs/plugin-react": "^2.2.0",
49
49
  "bumpp": "^8.2.1",
50
- "eslint": "^8.40.0",
50
+ "eslint": "^8.42.0",
51
51
  "husky": "^8.0.3",
52
52
  "lint-staged": "^12.5.0",
53
53
  "prettier": "^2.8.8",
54
54
  "rimraf": "^3.0.2",
55
- "vite": "^4.3.5",
56
- "vite-plugin-blocklet": "^0.6.5",
55
+ "vite": "^4.3.9",
56
+ "vite-plugin-blocklet": "^0.6.6",
57
57
  "vite-plugin-node-polyfills": "^0.7.0",
58
58
  "vite-plugin-svgr": "^2.4.0",
59
59
  "zx": "^7.2.2"
@@ -22,7 +22,7 @@
22
22
  "devDependencies": {
23
23
  "bumpp": "^8.2.1",
24
24
  "cross-env": "^7.0.3",
25
- "eslint": "^8.40.0",
25
+ "eslint": "^8.42.0",
26
26
  "eslint-config-prettier": "^8.8.0",
27
27
  "eslint-plugin-prettier": "^4.2.1",
28
28
  "eslint-plugin-solid": "0.7.1",
@@ -32,19 +32,19 @@
32
32
  "npm-run-all": "^4.1.5",
33
33
  "prettier": "^2.8.8",
34
34
  "rimraf": "^3.0.2",
35
- "vite": "^4.3.5",
36
- "vite-plugin-blocklet": "^0.6.5",
35
+ "vite": "^4.3.9",
36
+ "vite-plugin-blocklet": "^0.6.6",
37
37
  "vite-plugin-node-polyfills": "^0.7.0",
38
38
  "vite-plugin-solid": "^2.7.0",
39
39
  "zx": "^7.2.2"
40
40
  },
41
41
  "dependencies": {
42
- "@arcblock/did-auth": "^1.18.78",
42
+ "@arcblock/did-auth": "^1.18.84",
43
43
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
44
- "@blocklet/sdk": "^1.16.7",
45
- "@ocap/client": "^1.18.78",
46
- "@ocap/mcrypto": "^1.18.78",
47
- "@ocap/wallet": "^1.18.78",
44
+ "@blocklet/sdk": "^1.16.10",
45
+ "@ocap/client": "^1.18.84",
46
+ "@ocap/mcrypto": "^1.18.84",
47
+ "@ocap/wallet": "^1.18.84",
48
48
  "axios": "^0.27.2",
49
49
  "compression": "^1.7.4",
50
50
  "cookie-parser": "^1.4.6",
@@ -53,7 +53,7 @@
53
53
  "express": "^4.18.2",
54
54
  "express-async-errors": "^3.1.1",
55
55
  "express-history-api-fallback": "^2.2.1",
56
- "solid-js": "^1.7.5"
56
+ "solid-js": "^1.7.6"
57
57
  },
58
58
  "lint-staged": {
59
59
  "*.{mjs,js,vue}": [
@@ -20,7 +20,7 @@
20
20
  "license": "MIT",
21
21
  "devDependencies": {
22
22
  "bumpp": "^8.2.1",
23
- "eslint": "^8.40.0",
23
+ "eslint": "^8.42.0",
24
24
  "eslint-config-prettier": "^8.8.0",
25
25
  "eslint-plugin-prettier": "^4.2.1",
26
26
  "eslint-plugin-solid": "0.7.1",
@@ -28,14 +28,14 @@
28
28
  "lint-staged": "^12.5.0",
29
29
  "prettier": "^2.8.8",
30
30
  "rimraf": "^3.0.2",
31
- "vite": "^4.3.5",
32
- "vite-plugin-blocklet": "^0.6.5",
31
+ "vite": "^4.3.9",
32
+ "vite-plugin-blocklet": "^0.6.6",
33
33
  "vite-plugin-node-polyfills": "^0.7.0",
34
34
  "vite-plugin-solid": "^2.7.0",
35
35
  "zx": "^7.2.2"
36
36
  },
37
37
  "dependencies": {
38
- "solid-js": "^1.7.5"
38
+ "solid-js": "^1.7.6"
39
39
  },
40
40
  "lint-staged": {
41
41
  "*.{mjs,js,vue}": [
@@ -17,12 +17,12 @@
17
17
  "bump-version": "zx --quiet scripts/bump-version.mjs"
18
18
  },
19
19
  "dependencies": {
20
- "@arcblock/did-auth": "^1.18.78",
20
+ "@arcblock/did-auth": "^1.18.84",
21
21
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
22
- "@blocklet/sdk": "^1.16.7",
23
- "@ocap/client": "^1.18.78",
24
- "@ocap/mcrypto": "^1.18.78",
25
- "@ocap/wallet": "^1.18.78",
22
+ "@blocklet/sdk": "^1.16.10",
23
+ "@ocap/client": "^1.18.84",
24
+ "@ocap/mcrypto": "^1.18.84",
25
+ "@ocap/wallet": "^1.18.84",
26
26
  "axios": "^0.27.2",
27
27
  "compression": "^1.7.4",
28
28
  "cookie-parser": "^1.4.6",
@@ -36,7 +36,7 @@
36
36
  "@sveltejs/vite-plugin-svelte": "1.0.1",
37
37
  "bumpp": "^8.2.1",
38
38
  "cross-env": "^7.0.3",
39
- "eslint": "^8.40.0",
39
+ "eslint": "^8.42.0",
40
40
  "eslint-config-prettier": "^8.8.0",
41
41
  "eslint-plugin-prettier": "^4.2.1",
42
42
  "eslint-plugin-svelte3": "^4.0.0",
@@ -46,8 +46,8 @@
46
46
  "prettier": "^2.8.8",
47
47
  "rimraf": "^3.0.2",
48
48
  "svelte": "^3.59.1",
49
- "vite": "^4.3.5",
50
- "vite-plugin-blocklet": "^0.6.5",
49
+ "vite": "^4.3.9",
50
+ "vite-plugin-blocklet": "^0.6.6",
51
51
  "vite-plugin-html": "^3.2.0",
52
52
  "vite-plugin-node-polyfills": "^0.7.0",
53
53
  "zx": "^7.2.2"
@@ -20,7 +20,7 @@
20
20
  "devDependencies": {
21
21
  "@sveltejs/vite-plugin-svelte": "1.0.1",
22
22
  "bumpp": "^8.2.1",
23
- "eslint": "^8.40.0",
23
+ "eslint": "^8.42.0",
24
24
  "eslint-config-prettier": "^8.8.0",
25
25
  "eslint-plugin-prettier": "^4.2.1",
26
26
  "eslint-plugin-svelte3": "^4.0.0",
@@ -29,8 +29,8 @@
29
29
  "prettier": "^2.8.8",
30
30
  "rimraf": "^3.0.2",
31
31
  "svelte": "^3.59.1",
32
- "vite": "^4.3.5",
33
- "vite-plugin-blocklet": "^0.6.5",
32
+ "vite": "^4.3.9",
33
+ "vite-plugin-blocklet": "^0.6.6",
34
34
  "vite-plugin-node-polyfills": "^0.7.0",
35
35
  "zx": "^7.2.2"
36
36
  },
@@ -18,12 +18,12 @@
18
18
  "bump-version": "zx --quiet scripts/bump-version.mjs"
19
19
  },
20
20
  "dependencies": {
21
- "@arcblock/did-auth": "^1.18.78",
21
+ "@arcblock/did-auth": "^1.18.84",
22
22
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
23
- "@blocklet/sdk": "^1.16.7",
24
- "@ocap/client": "^1.18.78",
25
- "@ocap/mcrypto": "^1.18.78",
26
- "@ocap/wallet": "^1.18.78",
23
+ "@blocklet/sdk": "^1.16.10",
24
+ "@ocap/client": "^1.18.84",
25
+ "@ocap/mcrypto": "^1.18.84",
26
+ "@ocap/wallet": "^1.18.84",
27
27
  "axios": "^0.27.2",
28
28
  "compression": "^1.7.4",
29
29
  "cookie-parser": "^1.4.6",
@@ -32,24 +32,24 @@
32
32
  "express": "^4.18.2",
33
33
  "express-async-errors": "^3.1.1",
34
34
  "express-history-api-fallback": "^2.2.1",
35
- "vue": "^3.3.1"
35
+ "vue": "^3.3.4"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@vitejs/plugin-vue": "^3.2.0",
39
39
  "bumpp": "^8.2.1",
40
40
  "cross-env": "^7.0.3",
41
- "eslint": "^8.40.0",
41
+ "eslint": "^8.42.0",
42
42
  "eslint-config-prettier": "^8.8.0",
43
43
  "eslint-plugin-prettier": "^4.2.1",
44
- "eslint-plugin-vue": "^9.12.0",
44
+ "eslint-plugin-vue": "^9.14.1",
45
45
  "husky": "^8.0.3",
46
46
  "lint-staged": "^12.5.0",
47
47
  "nodemon": "^2.0.22",
48
48
  "npm-run-all": "^4.1.5",
49
49
  "prettier": "^2.8.8",
50
50
  "rimraf": "^3.0.2",
51
- "vite": "^4.3.5",
52
- "vite-plugin-blocklet": "^0.6.5",
51
+ "vite": "^4.3.9",
52
+ "vite-plugin-blocklet": "^0.6.6",
53
53
  "vite-plugin-node-polyfills": "^0.7.0",
54
54
  "zx": "^7.2.2"
55
55
  },
@@ -17,21 +17,21 @@
17
17
  "bump-version": "zx --quiet scripts/bump-version.mjs"
18
18
  },
19
19
  "dependencies": {
20
- "vue": "^3.3.1"
20
+ "vue": "^3.3.4"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@vitejs/plugin-vue": "^3.2.0",
24
24
  "bumpp": "^8.2.1",
25
- "eslint": "^8.40.0",
25
+ "eslint": "^8.42.0",
26
26
  "eslint-config-prettier": "^8.8.0",
27
27
  "eslint-plugin-prettier": "^4.2.1",
28
- "eslint-plugin-vue": "^9.12.0",
28
+ "eslint-plugin-vue": "^9.14.1",
29
29
  "husky": "^8.0.3",
30
30
  "lint-staged": "^12.5.0",
31
31
  "prettier": "^2.8.8",
32
32
  "rimraf": "^3.0.2",
33
- "vite": "^4.3.5",
34
- "vite-plugin-blocklet": "^0.6.5",
33
+ "vite": "^4.3.9",
34
+ "vite-plugin-blocklet": "^0.6.6",
35
35
  "vite-plugin-node-polyfills": "^0.7.0",
36
36
  "zx": "^7.2.2"
37
37
  },
@@ -18,12 +18,12 @@
18
18
  "bump-version": "zx --quiet scripts/bump-version.mjs"
19
19
  },
20
20
  "dependencies": {
21
- "@arcblock/did-auth": "^1.18.78",
21
+ "@arcblock/did-auth": "^1.18.84",
22
22
  "@arcblock/did-auth-storage-nedb": "^1.7.1",
23
- "@blocklet/sdk": "^1.16.7",
24
- "@ocap/client": "^1.18.78",
25
- "@ocap/mcrypto": "^1.18.78",
26
- "@ocap/wallet": "^1.18.78",
23
+ "@blocklet/sdk": "^1.16.10",
24
+ "@ocap/client": "^1.18.84",
25
+ "@ocap/mcrypto": "^1.18.84",
26
+ "@ocap/wallet": "^1.18.84",
27
27
  "axios": "^0.27.2",
28
28
  "compression": "^1.7.4",
29
29
  "cookie-parser": "^1.4.6",
@@ -38,18 +38,18 @@
38
38
  "@vitejs/plugin-vue2": "^2.2.0",
39
39
  "bumpp": "^8.2.1",
40
40
  "cross-env": "^7.0.3",
41
- "eslint": "^8.40.0",
41
+ "eslint": "^8.42.0",
42
42
  "eslint-config-prettier": "^8.8.0",
43
43
  "eslint-plugin-prettier": "^4.2.1",
44
- "eslint-plugin-vue": "^9.12.0",
44
+ "eslint-plugin-vue": "^9.14.1",
45
45
  "husky": "^8.0.3",
46
46
  "lint-staged": "^12.5.0",
47
47
  "nodemon": "^2.0.22",
48
48
  "npm-run-all": "^4.1.5",
49
49
  "prettier": "^2.8.8",
50
50
  "rimraf": "^3.0.2",
51
- "vite": "^4.3.5",
52
- "vite-plugin-blocklet": "^0.6.5",
51
+ "vite": "^4.3.9",
52
+ "vite-plugin-blocklet": "^0.6.6",
53
53
  "vite-plugin-node-polyfills": "^0.7.0",
54
54
  "zx": "^7.2.2"
55
55
  },
@@ -22,16 +22,16 @@
22
22
  "devDependencies": {
23
23
  "@vitejs/plugin-vue2": "^2.2.0",
24
24
  "bumpp": "^8.2.1",
25
- "eslint": "^8.40.0",
25
+ "eslint": "^8.42.0",
26
26
  "eslint-config-prettier": "^8.8.0",
27
27
  "eslint-plugin-prettier": "^4.2.1",
28
- "eslint-plugin-vue": "^9.12.0",
28
+ "eslint-plugin-vue": "^9.14.1",
29
29
  "husky": "^8.0.3",
30
30
  "lint-staged": "^12.5.0",
31
31
  "prettier": "^2.8.8",
32
32
  "rimraf": "^3.0.2",
33
- "vite": "^4.3.5",
34
- "vite-plugin-blocklet": "^0.6.5",
33
+ "vite": "^4.3.9",
34
+ "vite-plugin-blocklet": "^0.6.6",
35
35
  "vite-plugin-node-polyfills": "^0.7.0",
36
36
  "zx": "^7.2.2"
37
37
  },
@@ -15,7 +15,7 @@
15
15
  "bump-version": "zx --quiet scripts/bump-version.mjs"
16
16
  },
17
17
  "dependencies": {
18
- "@xmark/cli": "^2.5.4",
18
+ "@xmark/cli": "^2.5.5",
19
19
  "bumpp": "^8.2.1",
20
20
  "rimraf": "^3.0.2",
21
21
  "zx": "^7.2.2"