forked from ably-labs/react-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "@ably-labs/react-hooks",
"version": "2.0.10",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "npx vite serve",
"test": "vitest run",
"ci": "npm run test && npm run build",
"build": "npm run build:cjs && npm run build:mjs",
"build:mjs": "tsc --project tsconfig.mjs.json && cp res/package.mjs.json dist/mjs/package.json",
"build:cjs": "tsc --project tsconfig.cjs.json && cp res/package.cjs.json dist/cjs/package.json"
},
"exports": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ably-labs/react-hooks.git"
},
"author": "Jo Franchetti, David Whitney",
"license": "ISC",
"bugs": {
"url": "https://github.com/ably-labs/react-hooks/issues"
},
"homepage": "https://github.com/ably-labs/react-hooks#readme",
"devDependencies": {
"@testing-library/react": "^13.3.0",
"@vitejs/plugin-react": "^1.3.2",
"jsdom": "^20.0.0",
"react": ">=18.1.0",
"react-dom": ">=18.1.0",
"typescript": ">=4.4.4",
"vitest": "^0.18.0"
},
"dependencies": {
"ably": "^1.2.27"
},
"peerDependencies": {
"react": ">=18.1.0",
"react-dom": ">=18.1.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"ably",
"react",
"websockets",
"realtime",
"hooks",
"react hooks"
]
}