-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
70 lines (70 loc) · 1.65 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "metacom",
"version": "3.2.4",
"author": "Timur Shemsedinov <[email protected]>",
"description": "Communication protocol for Metarhia stack with rpc, events, binary streams, memory and db access",
"license": "MIT",
"keywords": [
"metacom",
"metarhia",
"impress",
"server",
"client",
"socket",
"websocket",
"rpc",
"events",
"sync",
"globalstorage",
"protocol",
"stream"
],
"repository": {
"type": "git",
"url": "https://github.com/metarhia/metacom"
},
"bugs": {
"url": "https://github.com/metarhia/metacom/issues",
"email": "[email protected]"
},
"homepage": "https://metarhia.com",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/tshemsedinov"
},
"main": "metacom.js",
"types": "metacom.d.ts",
"browser": {
"./metacom.js": "./dist/metacom.js"
},
"files": [
"dist/",
"lib/",
"metacom.d.ts",
"CHANGELOG.md",
"SECURITY.md"
],
"readmeFilename": "README.md",
"scripts": {
"test": "npm run -s lint && npm run types && metatests test/",
"types": "tsc -p tsconfig.json",
"lint": "eslint . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\"",
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\""
},
"engines": {
"node": "18 || 20 || 21 || 22"
},
"dependencies": {
"metautil": "5.2.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.5.2",
"@types/ws": "^8.5.12",
"eslint": "^9.9.1",
"eslint-config-metarhia": "^9.0.5",
"metatests": "^0.9.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}