@iotopen/react-lynx 1.0.2-rc.0 → 1.0.2-rc.2

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": "@iotopen/react-lynx",
3
- "version": "1.0.2-rc.0",
3
+ "version": "1.0.2-rc.2",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "source": "src/index.ts",
@@ -10,7 +10,11 @@
10
10
  "onlyBuiltDependencies": [
11
11
  "esbuild",
12
12
  "unrs-resolver"
13
- ]
13
+ ],
14
+ "overrides": {
15
+ "@microsoft/api-extractor": "7.52.8",
16
+ "minimatch": "10.2.2"
17
+ }
14
18
  },
15
19
  "scripts": {
16
20
  "lint": "pnpm type-check && eslint src --max-warnings 0",
@@ -22,7 +26,6 @@
22
26
  "build": "vite build --config ./vite.config.ts",
23
27
  "prepublishOnly": "pnpm run build && node scripts/verify-dist.cjs",
24
28
  "dev": "vite",
25
- "clean": "rimraf dist",
26
29
  "publish:prerelease": "pnpm version prerelease --preid=rc && pnpm run build && npm publish --tag rc"
27
30
  },
28
31
  "publishConfig": {
@@ -33,23 +36,23 @@
33
36
  "url": "https://github.com/IoTOpen/react-lynx.git"
34
37
  },
35
38
  "devDependencies": {
36
- "@eslint/js": "^9.39.2",
37
- "@iotopen/node-lynx": "2.6.0-rc.1",
39
+ "@eslint/js": "^9.39.3",
40
+ "@iotopen/node-lynx": "2.6.0-rc.2",
38
41
  "@types/node": "^22.19.11",
39
42
  "@types/react": "^19.2.14",
40
43
  "@types/react-dom": "^19.2.3",
41
44
  "@typescript-eslint/eslint-plugin": "^8.56.0",
42
45
  "@typescript-eslint/parser": "^8.56.0",
43
46
  "@vitejs/plugin-react": "^5.1.4",
44
- "eslint": "^9.39.2",
47
+ "eslint": "^9.39.3",
45
48
  "eslint-import-resolver-typescript": "^4.4.4",
46
49
  "eslint-plugin-import-x": "^4.16.1",
47
50
  "eslint-plugin-react": "^7.37.5",
48
51
  "eslint-plugin-react-hooks": "^7.0.1",
49
52
  "eslint-plugin-simple-import-sort": "^12.1.1",
50
53
  "globals": "^16.5.0",
51
- "rimraf": "^5.0.10",
52
54
  "typescript": "^5.9.3",
55
+ "typescript-eslint": "^8.56.0",
53
56
  "vite": "^7.3.1",
54
57
  "vite-plugin-dts": "^4.5.4"
55
58
  },
@@ -68,6 +71,7 @@
68
71
  },
69
72
  "exports": {
70
73
  ".": {
74
+ "types": "./dist/index.d.ts",
71
75
  "import": "./dist/esm/index.js",
72
76
  "require": "./dist/cjs/index.js"
73
77
  }