@logto/cloud 0.2.5-31703ea → 0.2.5-cbbfdc2

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.
Files changed (1) hide show
  1. package/package.json +12 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@logto/cloud",
3
- "version": "0.2.5-31703ea",
3
+ "version": "0.2.5-cbbfdc2",
4
4
  "description": "Logto Cloud service.",
5
5
  "main": "build/index.js",
6
6
  "author": "Silverhand Inc. <contact@silverhand.io>",
@@ -24,11 +24,12 @@
24
24
  "@types/jest": "^29.4.0",
25
25
  "@types/mime-types": "^2.1.1",
26
26
  "@types/node": "^18.11.18",
27
+ "@types/yargs": "^17.0.24",
27
28
  "dts-bundle-generator": "^8.0.1",
28
29
  "eslint": "^8.21.0",
29
30
  "jest": "^29.5.0",
30
31
  "lint-staged": "^13.0.0",
31
- "nodemon": "^2.0.19",
32
+ "nodemon": "^3.0.0",
32
33
  "prettier": "^2.8.1",
33
34
  "typescript": "^5.0.0"
34
35
  },
@@ -36,14 +37,18 @@
36
37
  "node": "^18.12.0"
37
38
  },
38
39
  "eslintConfig": {
39
- "extends": "@silverhand"
40
+ "extends": "@silverhand",
41
+ "ignorePatterns": [
42
+ "types.test.ts"
43
+ ]
40
44
  },
41
45
  "prettier": "@silverhand/eslint-config/.prettierrc",
42
46
  "publishConfig": {
43
47
  "access": "public"
44
48
  },
45
49
  "dependencies": {
46
- "@withtyped/server": "^0.12.0"
50
+ "@silverhand/essentials": "^2.7.0",
51
+ "@withtyped/server": "^0.12.4"
47
52
  },
48
53
  "scripts": {
49
54
  "precommit": "lint-staged",
@@ -56,8 +61,9 @@
56
61
  "dev": "rm -rf build/ && nodemon",
57
62
  "start": "NODE_ENV=production node .",
58
63
  "test:only": "NODE_OPTIONS=\"--experimental-vm-modules --max_old_space_size=4096\" jest --logHeapUsage",
59
- "test": "pnpm build:test && pnpm test:only",
64
+ "test": "pnpm build:test && pnpm test:only && pnpm build:lib && pnpm test:types",
60
65
  "test:ci": "pnpm test:only --coverage --silent",
61
- "test:types": "tsc -p tsconfig.test.types.json"
66
+ "test:types": "tsc -p tsconfig.test.types.json",
67
+ "cli": "node ./build/cli/index.js"
62
68
  }
63
69
  }