-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.58 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "prpcow",
"version": "2.0.0-alpha.23",
"description": "Plain RPC (Remote Procedure Call) over WebSocket",
"type": "module",
"main": "./dist/esm/src/index.js",
"types": "./dist/types/src/index.d.ts",
"exports": {
"types": "./dist/types/src/index.d.ts",
"require": "./dist/cjs/src/index.js",
"import": "./dist/esm/src/index.js",
"default": "./dist/esm/src/index.js"
},
"scripts": {
"release": "npx standard-version -p alpha",
"release:jdi": "npm run release && npm run release:doPush",
"release:doPush": "git push --follow-tags origin master && npm run release:publish",
"release:publish": "npm publish",
"pretest": "npm run build",
"test": "cd tests && npm run test",
"prepublishOnly": "npm run build:clean",
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:clean": "node scripts/clean.cjs && npm run build",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build:types": "tsc --project tsconfig.types.json",
"postbuild": "node scripts/typings.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeskiy/prpcow.git"
},
"dependencies": {
"buffer": "^6.0.3",
"events": "^3.3.0",
"pure-uuid": "^1.8.1",
"semver": "^7.6.0",
"uuid": "^9.0.1"
},
"peerDependencies": {
"ws": "^8.5.0 || ^7.5.0"
},
"devDependencies": {
"@types/brotli": "^1.3.4",
"@types/uuid": "^9.0.8",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"npm-check-updates": "^16.14.17",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=18.18.2"
},
"volta": {
"node": "18.18.2",
"npm": "9.8.1"
},
"files": [
"dist"
],
"keywords": [
"RPC",
"plain",
"Websocket",
"Remote",
"Call",
"js"
],
"author": "Yehor Brodskiy",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeskiy/prpcow/issues"
},
"homepage": "https://github.com/yeskiy/prpcow#readme"
}