-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 KB
/
package.json
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
{
"name": "refine-jsonapi",
"version": "1.0.5",
"description": "Data provider for refine with JSON:API specification. refine is a React-based framework for building internal tools, rapidly. JSON:API is a specification for building apis in JSON.",
"type": "module",
"author": {
"name": "Mahir Mahdi",
"email": "mahdimahir45@gmail.com",
"url": "https://github.com/MahirMahdi"
},
"types": "./dist/index.d.ts",
"exports": "./dist/index.js",
"homepage": "https://github.com/MahirMahdi/refine-json-api#readme",
"private": false,
"keywords": [
"refine",
"refinedev",
"json-api",
"data provider",
"react"
],
"scripts": {
"build": "tsc",
"prepublish": "tsc",
"test": "jest --passWithNoTests --runInBand"
},
"repository": {
"type": "git",
"url": "https://github.com/MahirMahdi/refine-json-api.git"
},
"bugs": {
"url": "https://github.com/MahirMahdi/refine-json-api/issues"
},
"peerDependencies": {
"@refinedev/core": "^4.28.2"
},
"devDependencies": {
"typescript": "^5.2.2",
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"nock": "^13.1.3",
"ts-jest": "^29.0.3"
},
"dependencies": {
"axios": "^0.26.1",
"query-string": "^7.1.1"
},
"license": "ISC"
}