-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.74 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
{
"name": "@refinedev/airtable",
"version": "5.0.1",
"private": false,
"description": "Airtable Data Provider for Refine, enabling seamless Airtable integrations.",
"repository": {
"type": "git",
"url": "https://github.com/refinedev/refine.git",
"directory": "packages/airtable"
},
"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"
}
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"./refine.config.js"
],
"scripts": {
"attw": "attw --pack .",
"build": "tsdown && node ../shared/generate-declarations.js",
"dev": "tsdown --watch",
"prepare": "pnpm build",
"publint": "publint --strict=true --level=suggestion",
"test": "vitest run --passWithNoTests",
"types": "node ../shared/generate-declarations.js"
},
"dependencies": {
"@qualifyze/airtable-formulator": "^1.0.1",
"airtable": "^0.11.1",
"asyncairtable": "^2.1.0",
"query-string": "^7.1.1"
},
"devDependencies": {
"@esbuild-plugins/node-resolve": "^0.1.4",
"@refinedev/core": "5.1.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/node": "^20",
"@types/node-fetch": "^2.6.11",
"jsdom": "^25.0.1",
"nock": "^13.4.0",
"node-fetch": "^2.6.7",
"tsdown": "^0.21.10",
"tslib": "^2.6.2",
"typescript": "^5.8.3",
"vitest": "^2.1.8"
},
"peerDependencies": {
"@refinedev/core": "^5.0.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}