-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@ffimnsr/refine-postgrest",
"version": "1.0.1",
"private": false,
"description": "refine PostgREST data provider. refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.",
"repository": {
"type": "git",
"url": "git+https://github.com/ffimnsr/refine-postgrest-ts.git"
},
"license": "MIT",
"author": "Edward Fitz Abucay <gh:@ffimnsr>",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"./refine.config.js"
],
"scripts": {
"attw": "attw --pack .",
"build": "tsup",
"dev": "tsup --watch",
"prepare": "pnpm build",
"publint": "publint --strict=true --level=suggestion",
"test": "jest --passWithNoTests --runInBand"
},
"dependencies": {
"@supabase/postgrest-js": "^1.17.7"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@esbuild-plugins/node-resolve": "^0.1.4",
"@jest/globals": "^29.7.0",
"@refinedev/cli": "^2.16.40",
"@refinedev/core": "^4.54.1",
"@types/jest": "^29.5.14",
"axios": "^1.7.9",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"nock": "^13.4.0",
"publint": "^0.2.12",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"tsup": "^6.7.0",
"typescript": "^5.7.2"
},
"peerDependencies": {
"@refinedev/core": "^4.46.1",
"@supabase/postgrest-js": "^1.17.4"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}