-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.66 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
{
"name": "electron-util",
"version": "1.0.0",
"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": "sindresorhus@gmail.com",
"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": ">=20"
},
"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.1.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^8.0.1",
"electron": "^38.0.0",
"tsd": "^0.33.0",
"type-fest": "^4.41.0",
"typescript": "^5.9.2",
"xo": "^1.2.2"
},
"xo": {
"ignores": [
"distribution"
],
"rules": {
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/restrict-plus-operands": "off",
"no-warning-comments": "off"
}
}
}