forked from schneidmaster/action-cable-react
-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.55 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
{
"name": "@kesha-antonov/react-native-action-cable",
"version": "2.0.0",
"description": "Use Rails ActionCable channels with React Native for real-time WebSocket communication.",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"bump": "npm version patch",
"publish": "npm publish",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kesha-antonov/react-native-action-cable.git"
},
"keywords": [
"react-native",
"actioncable",
"action-cable",
"rails",
"websocket",
"realtime",
"real-time",
"channels",
"subscriptions",
"typescript"
],
"author": "Zach Schneider <zach@schneid.io>, Kesha Antonov <innokenty.longway@gmail.com>",
"license": "MIT",
"files": [
"index.ts",
"lib/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"bugs": {
"url": "https://github.com/kesha-antonov/react-native-action-cable/issues"
},
"homepage": "https://github.com/kesha-antonov/react-native-action-cable#readme",
"devDependencies": {
"@stylistic/eslint-plugin": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9.27.0",
"husky": "^9.1.0",
"lint-staged": "^15.5.0",
"typescript": "^5.9.3"
},
"dependencies": {
"eventemitter3": "5.0.4"
},
"directories": {
"lib": "lib"
},
"type": "commonjs",
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
}
}