-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.51 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
{
"name": "@refinedev/ably",
"version": "5.0.1",
"private": false,
"description": "Ably Live Provider for Refine, enabling real-time updates to your Refine applications effortlessly.",
"repository": {
"type": "git",
"url": "https://github.com/refinedev/refine.git",
"directory": "packages/ably"
},
"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"
],
"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": {
"ably": "^1.2.15"
},
"devDependencies": {
"@esbuild-plugins/node-resolve": "^0.1.4",
"@refinedev/core": "^5.0.5",
"@types/node": "^20",
"jsdom": "^25.0.1",
"nock": "^13.4.0",
"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"
}
}