-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
74 lines (74 loc) · 1.46 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
74
{
"name": "electron-util",
"version": "0.18.1",
"description": "Useful utilities for Electron apps and modules",
"license": "MIT",
"repository": "sindresorhus/electron-util",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": {
".": {
"types": "./distribution/shared/index.d.ts",
"default": "./distribution/shared/index.js"
},
"./main": {
"types": "./distribution/main/index.d.ts",
"default": "./distribution/main/index.js"
},
"./node": {
"types": "./distribution/node/index.d.ts",
"default": "./distribution/node/index.js"
}
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"start": "npm run build && electron test/example.js",
"build": "tsc",
"prepare": "npm run build",
"//test": "npm run build && xo && tsd",
"test": "npm run build && xo"
},
"files": [
"distribution"
],
"keywords": [
"electron",
"app",
"dev",
"development",
"utility",
"utilities",
"util",
"utils",
"useful"
],
"dependencies": {
"electron-is-dev": "^3.0.1",
"new-github-issue-url": "^1.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"electron": "^28.1.3",
"tsd": "^0.30.3",
"type-fest": "^4.9.0",
"typescript": "^5.3.3",
"xo": "^0.56.0"
},
"xo": {
"envs": [
"node",
"browser"
],
"ignores": [
"distribution"
]
}
}