@refinedev/core 4.47.0 → 4.47.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,24 +1,35 @@
1
1
  {
2
2
  "name": "@refinedev/core",
3
- "version": "4.47.0",
4
- "description": "refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.",
3
+ "version": "4.47.2",
5
4
  "private": false,
5
+ "description": "refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/refinedev/refine.git",
9
+ "directory": "packages/core"
10
+ },
11
+ "license": "MIT",
12
+ "author": "refine",
6
13
  "sideEffects": false,
7
14
  "main": "dist/index.js",
8
15
  "module": "dist/esm/index.js",
9
16
  "typings": "dist/index.d.ts",
10
17
  "scripts": {
11
- "start": "tsup --watch --format esm,cjs,iife --legacy-output",
12
18
  "build": "tsup --format esm,cjs,iife --minify --legacy-output",
13
- "test": "jest --passWithNoTests --runInBand",
14
- "prepare": "npm run build"
19
+ "dev": "tsup --watch --format esm,cjs,iife --legacy-output",
20
+ "prepare": "npm run build",
21
+ "test": "jest --passWithNoTests --runInBand"
15
22
  },
16
- "peerDependencies": {
17
- "react": "^17.0.0 || ^18.0.0",
23
+ "dependencies": {
24
+ "@refinedev/devtools-internal": "1.1.5",
18
25
  "@tanstack/react-query": "^4.10.1",
19
- "react-dom": "^17.0.0 || ^18.0.0",
20
- "@types/react": "^17.0.0 || ^18.0.0",
21
- "@types/react-dom": "^17.0.0 || ^18.0.0"
26
+ "lodash": "^4.17.21",
27
+ "lodash-es": "^4.17.21",
28
+ "papaparse": "^5.3.0",
29
+ "pluralize": "^8.0.0",
30
+ "qs": "^6.10.1",
31
+ "tslib": "^2.3.1",
32
+ "warn-once": "^0.1.0"
22
33
  },
23
34
  "devDependencies": {
24
35
  "@esbuild-plugins/node-resolve": "^0.1.4",
@@ -43,26 +54,15 @@
43
54
  "tsup": "^6.7.0",
44
55
  "typescript": "^4.7.4"
45
56
  },
46
- "dependencies": {
47
- "@refinedev/devtools-internal": "1.1.4",
48
- "lodash-es": "^4.17.21",
49
- "lodash": "^4.17.21",
50
- "papaparse": "^5.3.0",
51
- "pluralize": "^8.0.0",
52
- "qs": "^6.10.1",
57
+ "peerDependencies": {
53
58
  "@tanstack/react-query": "^4.10.1",
54
- "tslib": "^2.3.1",
55
- "warn-once": "^0.1.0"
56
- },
57
- "repository": {
58
- "type": "git",
59
- "url": "https://github.com/refinedev/refine.git",
60
- "directory": "packages/core"
59
+ "@types/react": "^17.0.0 || ^18.0.0",
60
+ "@types/react-dom": "^17.0.0 || ^18.0.0",
61
+ "react": "^17.0.0 || ^18.0.0",
62
+ "react-dom": "^17.0.0 || ^18.0.0"
61
63
  },
62
- "author": "refine",
63
- "license": "MIT",
64
- "gitHead": "17dd5af3e4c9f7f09e1e707362c6f5a9d1cab8a8",
65
64
  "publishConfig": {
66
65
  "access": "public"
67
- }
66
+ },
67
+ "gitHead": "17dd5af3e4c9f7f09e1e707362c6f5a9d1cab8a8"
68
68
  }
@@ -13,24 +13,24 @@ const cards: CardInfo[] = [
13
13
  {
14
14
  title: "Documentation",
15
15
  description:
16
- "Learn about the technical details of using refine in your projects.",
17
- link: "https://refine.dev/",
16
+ "Learn about the technical details of using Refine in your projects.",
17
+ link: "https://refine.dev/docs",
18
18
  iconUrl:
19
19
  "https://refine.ams3.cdn.digitaloceanspaces.com/welcome-page/book.svg",
20
20
  },
21
21
  {
22
22
  title: "Tutorial",
23
23
  description:
24
- "Learn how to use refine by building a fully-functioning CRUD app, from scratch to full launch.",
25
- link: "https://refine.dev/docs/tutorial/introduction/index/",
24
+ "Learn how to use Refine by building a fully-functioning CRUD app, from scratch to full launch.",
25
+ link: "https://refine.dev/tutorial",
26
26
  iconUrl:
27
27
  "https://refine.ams3.cdn.digitaloceanspaces.com/welcome-page/hat.svg",
28
28
  },
29
29
  {
30
- title: "Examples",
30
+ title: "Templates",
31
31
  description:
32
- "A collection of reference applications you can use as a starting point.",
33
- link: "https://refine.dev/examples",
32
+ "Explore a range of pre-built templates, perfect everything from admin panels to dashboards and CRMs.",
33
+ link: "https://refine.dev/templates",
34
34
  iconUrl:
35
35
  "https://refine.ams3.cdn.digitaloceanspaces.com/welcome-page/application.svg",
36
36
  },