This repository has been archived by the owner on Apr 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 KB
/
package.json
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
{
"name": "rpc-shooter",
"private": false,
"version": "0.0.14",
"files": [
"lib"
],
"main": "./lib/index.umd.js",
"module": "./lib/index.es.js",
"exports": {
".": {
"import": "./lib/index.es.js",
"require": "./lib/index.umd.js"
}
},
"types": "./lib/index.d.ts",
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "tsc && vite build",
"lib": "tsc && cross-env BUILD_LIB=1 vite build",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/offscreencanvas": "^2019.6.4",
"c8": "^7.11.0",
"cross-env": "^7.0.3",
"puppeteer": "^13.4.1",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vite-plugin-dts": "^0.9.9",
"vite-plugin-pwa": "^0.11.13",
"vitest": "^0.5.9"
},
"description": "A tool library for handling window && iframe && worker communication based on the JSON RPC specification",
"directories": {
"example": "examples",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kinglisky/rpc-shooter.git"
},
"keywords": [
"RPC",
"JSON-RPC",
"iframe",
"worker",
"Web Workers",
"SharedWorker",
"message"
],
"author": "kinglisky",
"license": "APACHE-2.0",
"bugs": {
"url": "https://github.com/kinglisky/rpc-shooter/issues"
},
"homepage": "https://github.com/kinglisky/rpc-shooter#readme"
}