forked from socketio/engine.io-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.72 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": "engine.io-client",
"description": "Client for the realtime Engine",
"license": "MIT",
"version": "6.1.1",
"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",
"homepage": "https://github.com/socketio/engine.io-client",
"contributors": [
{
"name": "Guillermo Rauch",
"email": "rauchg@gmail.com"
},
{
"name": "Vladimir Dronnikov",
"email": "dronnikov@gmail.com"
},
{
"name": "Christoph Dorn",
"web": "https://github.com/cadorn"
},
{
"name": "Mark Mokryn",
"email": "mokesmokes@gmail.com"
}
],
"dependencies": {
"@socket.io/component-emitter": "~3.0.0"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"engine.io": "^6.2.0-alpha.1",
"express": "^4.17.1",
"prettier": "^1.19.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",
"test:types": "tsc -p tsconfig.test.json",
"test:browser": "playwright test",
"format:check": "prettier --check 'lib/**/*.ts' 'test/**/*.{js,ts}' 'playwright.config.js'",
"format:fix": "prettier --write 'lib/**/*.ts' 'test/**/*.{js,ts}' 'playwright.config.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/socketio/engine.io-client.git"
},
"files": [
"build/"
]
}