-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.83 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@refinedev/rest",
"version": "2.1.2",
"private": false,
"description": "REST Data Provider for Refine, enabling seamless REST API interactions.",
"repository": {
"type": "git",
"url": "https://github.com/refinedev/refine.git",
"directory": "packages/rest"
},
"license": "MIT",
"author": "refine",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./nestjsx-crud": {
"import": {
"types": "./dist/data-providers/nestjsx-crud/index.d.mts",
"default": "./dist/nestjsx-crud.mjs"
},
"require": {
"types": "./dist/data-providers/nestjsx-crud/index.d.cts",
"default": "./dist/nestjsx-crud.cjs"
}
},
"./simple-rest": {
"import": {
"types": "./dist/data-providers/simple-rest/index.d.mts",
"default": "./dist/simple-rest.mjs"
},
"require": {
"types": "./dist/data-providers/simple-rest/index.d.cts",
"default": "./dist/simple-rest.cjs"
}
},
"./strapi-v4": {
"import": {
"types": "./dist/data-providers/strapi-v4/index.d.mts",
"default": "./dist/strapi-v4.mjs"
},
"require": {
"types": "./dist/data-providers/strapi-v4/index.d.cts",
"default": "./dist/strapi-v4.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"typesVersions": {
"*": {
".": [
"dist/index.d.ts"
],
"nestjsx-crud": [
"dist/data-providers/nestjsx-crud/index.d.ts"
],
"simple-rest": [
"dist/data-providers/simple-rest/index.d.ts"
],
"strapi-v4": [
"dist/data-providers/strapi-v4/index.d.ts"
]
}
},
"typings": "dist/index.d.ts",
"scripts": {
"attw": "attw --pack .",
"build": "tsup && node ../shared/generate-declarations.js",
"dev": "tsup --watch",
"prepare": "pnpm build",
"publint": "publint --strict=true --level=suggestion",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"types": "node ../shared/generate-declarations.js"
},
"dependencies": {
"deepmerge": "^4.3.1",
"ky": "^1.10.0",
"qs": "^6.10.1"
},
"devDependencies": {
"@esbuild-plugins/node-resolve": "^0.1.4",
"@types/node": "^20",
"@vitest/ui": "^2.1.8",
"nock": "^14.0.5",
"tsup": "^6.7.0",
"typescript": "^5.8.3",
"vitest": "^2.1.8"
},
"peerDependencies": {
"@nestjsx/crud-request": "^5.0.0-alpha.3",
"@refinedev/core": "^5.0.0"
},
"peerDependenciesMeta": {
"@nestjsx/crud-request": {
"optional": true
}
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}