| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "@connectrpc/connect-web",
- "version": "2.1.0",
- "license": "Apache-2.0",
- "repository": {
- "type": "git",
- "url": "https://github.com/connectrpc/connect-es.git",
- "directory": "packages/connect-web"
- },
- "scripts": {
- "prebuild": "rm -rf ./dist/*",
- "build": "npm run build:cjs && npm run build:esm",
- "build:cjs": "tsc --project tsconfig.build.json --module commonjs --verbatimModuleSyntax false --moduleResolution node10 --outDir ./dist/cjs && echo >./dist/cjs/package.json '{\"type\":\"commonjs\"}'",
- "build:esm": "tsc --project tsconfig.build.json --outDir ./dist/esm",
- "conformance:safari:promise": "connectconformance --mode client --conf conformance/conformance-web.yaml -- tsx conformance/client.ts --browser safari",
- "conformance:safari:callback": "connectconformance --mode client --conf conformance/conformance-web.yaml -- tsx conformance/client.ts --browser safari --useCallbackClient",
- "conformance:chrome:promise": "connectconformance --mode client --conf conformance/conformance-web.yaml -- tsx conformance/client.ts --browser chrome",
- "conformance:chrome:callback": "connectconformance --mode client --conf conformance/conformance-web.yaml -- tsx conformance/client.ts --browser chrome --useCallbackClient",
- "conformance:firefox:promise": "connectconformance --mode client --conf conformance/conformance-web.yaml -- tsx conformance/client.ts --browser firefox",
- "conformance:firefox:callback": "connectconformance --mode client --conf conformance/conformance-web.yaml -- tsx conformance/client.ts --browser firefox --useCallbackClient",
- "conformance:node:promise": "connectconformance --mode client --conf conformance/conformance-web-node.yaml -- tsx conformance/client.ts --browser node",
- "conformance:node:callback": "connectconformance --mode client --conf conformance/conformance-web-node.yaml -- tsx conformance/client.ts --browser node --useCallbackClient",
- "test": "jasmine --config=jasmine.json",
- "generate": "buf generate --template browserstack/buf.gen.yaml",
- "postgenerate": "license-header browserstack/gen",
- "test-browserstack": "wdio run ./browserstack/wdio.browserstack.conf.js",
- "format": "biome format --write",
- "license-header": "license-header",
- "lint": "biome lint --error-on-warnings",
- "attw": "attw --pack"
- },
- "type": "module",
- "sideEffects": false,
- "main": "./dist/cjs/index.js",
- "exports": {
- ".": {
- "import": "./dist/esm/index.js",
- "require": "./dist/cjs/index.js"
- }
- },
- "devDependencies": {
- "@bufbuild/buf": "^1.56.0",
- "@bufbuild/protoc-gen-es": "^2.7.0",
- "@connectrpc/connect-conformance": "^2.1.0",
- "@wdio/jasmine-framework": "^9.19.1",
- "@wdio/cli": "^9.19.1",
- "@wdio/local-runner": "^9.19.1",
- "@wdio/browserstack-service": "^9.19.1",
- "jasmine": "^5.9.0",
- "webdriverio": "^9.7.2"
- },
- "peerDependencies": {
- "@bufbuild/protobuf": "^2.7.0",
- "@connectrpc/connect": "2.1.0"
- }
- }
|