-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@omnicajs/rpc",
"description": "An RPC library with strong support for simulating the transfer of functions via postMessage",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"packageManager": "yarn@4.13.0",
"engines": {
"node": ">=22.12.0"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./polyfill": {
"types": "./dist/polyfill.d.ts",
"import": "./dist/polyfill.mjs",
"require": "./dist/polyfill.cjs",
"default": "./dist/polyfill.mjs"
}
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"keywords": [
"rpc",
"postMessage",
"remote-ui",
"web-worker",
"iframe"
],
"scripts": {
"build": "vite build",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"coverage:merge": "node scripts/coverage-merge.mjs --out coverage-merged coverage/coverage-final.json coverage/playwright/coverage-final.json",
"test": "yarn typecheck && vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config vitest.playwright.ts",
"test:e2e:coverage": "vitest run --config vitest.playwright.ts --coverage",
"test:all:coverage": "yarn test:coverage && yarn test:e2e:coverage && yarn coverage:merge",
"test:coverage": "yarn typecheck && vitest run --coverage",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/omnicajs/rpc.git"
},
"homepage": "https://github.com/omnicajs/rpc#readme",
"bugs": {
"url": "https://github.com/omnicajs/rpc/issues"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^9.39.4",
"@types/node": "^25.9.1",
"@vitest/browser-playwright": "4.1.8",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.6.0",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
"istanbul-reports": "^3.2.0",
"playwright": "^1.61.0",
"standard-version": "^9.5.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1",
"upstream-rpc": "npm:@remote-ui/rpc@^1.4.7",
"vite": "^8.0.16",
"vite-plugin-dts": "^5.0.2",
"vitest": "^4.1.8"
}
}