-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.68 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.68 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
63
64
65
66
67
68
69
{
"name": "@putdotio/socket-client",
"version": "4.4.2",
"description": "SockJS client for real-time put.io events.",
"keywords": [
"put.io",
"putio",
"socket",
"sockjs",
"typescript"
],
"homepage": "https://github.com/putdotio/putio-sockjs",
"bugs": {
"url": "https://github.com/putdotio/putio-sockjs/issues"
},
"license": "MIT",
"author": "put.io <devs@put.io>",
"repository": {
"type": "git",
"url": "https://github.com/putdotio/putio-sockjs.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"check": "vp check .",
"clean": "rm -rf coverage dist",
"coverage": "vp test --coverage",
"dev": "vp pack --watch",
"prepack": "vp pack",
"test": "vp test",
"test:integration": "PUTIO_SOCKJS_INTEGRATION=1 vp test run src/client.integration.spec.ts",
"verify": "vp check . && vp pack && vp test && vp test --coverage"
},
"dependencies": {
"@putdotio/api-client": "8.49.0",
"exponential-backoff": "^3.1.0",
"nanoevents": "^9.1.0",
"sockjs-client": "^1.5.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"@types/sockjs-client": "^1.1.1",
"@vitest/coverage-v8": "4.1.7",
"typescript": "^6.0.3",
"vite-plus": "^0.1.22"
},
"engines": {
"node": ">=24.14.0"
},
"packageManager": "pnpm@11.2.2"
}