- Dart Web 브라우저 E2E 테스트 프레임워크 추가 - browser_ws_dart_io_test, browser_ws_kotlin_test 등 브라우저 통합 테스트 추가 - Dart Web 크로스테스트 케이스 추가 (go, kotlin, python, typescript) - TypeScript 브라우저 웹소켓 클라이언트 개선 - Node.js 웹소켓 서버 클라이언트 업데이트 - 테스트 실행 매트릭스 스킬 및 스크립트 업데이트 - README.md 문서 업데이트
31 lines
623 B
JSON
31 lines
623 B
JSON
{
|
|
"name": "proto-socket",
|
|
"version": "1.0.5",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/src/index.d.ts",
|
|
"default": "./dist/src/index.js"
|
|
},
|
|
"./node": {
|
|
"types": "./dist/src/node.d.ts",
|
|
"default": "./dist/src/node.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"test": "vitest run",
|
|
"check": "tsc --noEmit"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.15.21",
|
|
"@types/ws": "^8.18.1",
|
|
"tsx": "^4.19.3",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^3.1.3"
|
|
},
|
|
"dependencies": {
|
|
"ws": "^8.21.0"
|
|
}
|
|
}
|