-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 907 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 907 Bytes
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
{
"name": "@sovea/electron-ipc-service",
"author": "Sovea",
"version": "0.1.0",
"type": "module",
"exports": {
".": {
"types": "./esm/index.d.ts",
"import": "./esm/index.js"
},
"./*": {
"types": "./esm/*.d.ts",
"import": "./esm/*.js"
}
},
"types": "./esm/index.d.ts",
"files": [
"esm"
],
"scripts": {
"build": "rslib build",
"check": "biome check --write",
"dev": "rslib build --watch",
"format": "biome format --write"
},
"license": "MIT",
"repository": "git@github.com:Sovea/electron-ipc-service.git",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"nanoid": "^5.1.5"
},
"devDependencies": {
"@biomejs/biome": "2.1.3",
"@rslib/core": "^0.13.0",
"@types/node": "^22.18.1",
"type-fest": "^4.41.0",
"typescript": "^5.9.2"
},
"peerDependencies": {
"electron": "^22"
}
}