forked from socketio/socket.io-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.12 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
70
71
72
73
74
75
{
"name": "@crisp-fix/socket.io-client",
"version": "4.4.4",
"description": "Realtime application framework client",
"keywords": [
"realtime",
"framework",
"websocket",
"tcp",
"events",
"client"
],
"files": [
"build/"
],
"type": "module",
"main": "./build/esm/index.js",
"module": "./build/esm/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./build/esm/index.d.ts",
"import": "./build/esm/index.js"
}
},
"types": "./build/esm/index.d.ts",
"dependencies": {
"@socket.io/component-emitter": "~3.0.0",
"backo2": "~1.0.2",
"engine.io-client": "git+https://github.com/crisp-dev/engine.io-client.git#0c498aef3dd9150717082fcdb3f9525b712d7dfb"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"prettier": "^3.6.2",
"socket.io": "^4.8.1",
"typescript": "^7.0.2",
"vite": "^8.2.2"
},
"scripts": {
"compile": "rm -rf ./build && tsc && node -e \"require('node:fs').writeFileSync('./build/esm/package.json', '{\\\"type\\\":\\\"module\\\"}\\n')\"",
"test": "npm run format:check && npm run compile && npm run test:types && npm run test:browser && npm run test:bundle",
"test:types": "tsc -p tsconfig.test.json",
"test:browser": "playwright test",
"test:bundle": "vite build --config test/integration/vite.config.js && node test/integration/check-bundle.js",
"format:check": "prettier --check 'lib/**/*.ts' 'test/**/*.{js,ts}' 'playwright.config.js'",
"format:fix": "prettier --write 'lib/**/*.ts' 'test/**/*.{js,ts}' 'playwright.config.js'",
"prepack": "npm run compile"
},
"contributors": [
{
"name": "Guillermo Rauch",
"email": "rauchg@gmail.com"
},
{
"name": "Arnout Kazemier",
"email": "info@3rd-eden.com"
},
{
"name": "Vladimir Dronnikov",
"email": "dronnikov@gmail.com"
},
{
"name": "Einar Otto Stangvik",
"email": "einaros@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/socketio/socket.io-client.git"
},
"license": "MIT",
"engines": {
"node": ">=10.0.0"
}
}