-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.67 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
{
"name": "@open-rpc/client-js",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"browser": "./dist/browser/index.js",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"private": false,
"version": "0.0.0-development",
"description": " A browser-compatible JSON-RPC client with multiple transports.",
"scripts": {
"build": "bun run build.ts && npm run build:types && npm run build:docs",
"build:types": "tsc --emitDeclarationOnly --p tsconfig.json",
"build:docs": "typedoc src/index.ts",
"clean": "rm -rf dist",
"lint": "eslint .",
"test": "jest --coverage",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-rpc/client-js.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/open-rpc/client-js/issues"
},
"homepage": "https://github.com/open-rpc/client-js#readme",
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "22.13.2",
"@types/serve-handler": "6.1.4",
"@types/websocket": "1.0.10",
"@types/ws": "8.18.1",
"@typescript-eslint/eslint-plugin": "8.44.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.3",
"jest": "29.7.0",
"jest-environment-jsdom": "30.1.2",
"prettier": "3.5.2",
"serve-handler": "6.1.6",
"ts-jest": "29.4.2",
"typedoc": "0.28.13",
"typescript": "5.9.2"
},
"dependencies": {
"isomorphic-ws": "5.0.0",
"strict-event-emitter-types": "2.0.0",
"ws": "8.18.3"
}
}