-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "@mattkrick/trebuchet-client",
"version": "3.0.3",
"description": "A friendly siege weapon to get 2-way communication through tough firewalls and bad mobile networks",
"author": "Matt Krick <[email protected]>",
"main": "lib/index.js",
"keywords": [
"GraphQL",
"WebRTC",
"SSE",
"WebSocket",
"Long polling",
"Server sent events",
"offline first"
],
"repository": {
"type": "git",
"url": "https://github.com/mattkrick/trebuchet-client"
},
"dependencies": {
"eventemitter3": "^5.0.1",
"tslib": "^2.6.2"
},
"scripts": {
"lint": "eslint --fix src/**/*.ts",
"precommit": "lint-staged && tsc",
"prepublish": "tsc"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.2.1",
"typescript": "^5.4.5"
},
"license": "MIT",
"lint-staged": {
"./src/*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"printWidth": 100,
"singleQuote": true,
"semi": false,
"trailingComma": "all"
}
}