-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.98 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "child-ipc",
"version": "1.0.0",
"description": "A typed, Electron-style IPC interface to facilitate communication between the main process and a child process in Node.js (including, but not limited to, Electron apps).",
"author": "Maciej Krawczyk",
"homepage": "https://github.com/mckravchyk/child-ipc",
"repository": {
"type": "git",
"url": "git://github.com/mckravchyk/child-ipc"
},
"license": "MIT",
"main": "./dist/child-ipc.common.js",
"module": "./dist/child-ipc.mjs",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.mts",
"default": "./dist/child-ipc.mjs"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/child-ipc.common.js"
}
}
},
"types": "./dist/types/index.d.ts",
"scripts": {
"lint": "eslint src test",
"check-types": "tsc --noemit",
"test": "npx jest --verbose",
"check": "npm run lint; npm run check-types && npm run test",
"build": "npx rollup -c",
"prepublish": "npm run check && npm run build"
},
"files": [
"dist/",
"package.json",
"LICENSE",
"README.md"
],
"keywords": [
"ipc",
"child",
"process",
"child_process",
"node",
"electron"
],
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@mckravchyk/event-emitter": "^1.0.0",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"babel-jest": "^29.6.1",
"eslint": "^8.45.0",
"eslint-config-mckravchyk": "^1.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.6.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.4.0",
"typescript": "^5.3"
},
"dependencies": {
"external-promise": "^1.1.0"
}
}