-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.14 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.14 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@3fv/electron-utility-process-manager",
"version": "1.0.6",
"description": "electron-utility-process-manager",
"author": "Jonathan Glanz",
"license": "MIT",
"bugs": {
"url": "https://github.com/3fv/electron-utility-process-manager/issues"
},
"homepage": "https://github.com/3fv/electron-utility-process-manager#readme",
"type": "commonjs",
"main": "./lib/cjs/index.js",
"module": "./lib/mjs/index.js",
"types": "./lib/mjs/index.d.ts",
"exports": {
".": {
"types": "./lib/mjs/index.d.ts",
"node": "./lib/cjs/index.js",
"browser": "./lib/cjs/index.js",
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js"
},
"./main": {
"types": "./lib/mjs/main/index.d.ts",
"node": "./lib/cjs/main/index.js",
"import": "./lib/mjs/main/index.js",
"require": "./lib/cjs/main/index.js"
},
"./renderer": {
"types": "./lib/mjs/renderer/index.d.ts",
"node": "./lib/cjs/renderer/index.js",
"browser": "./lib/cjs/renderer/index.js",
"import": "./lib/mjs/renderer/index.js",
"require": "./lib/cjs/renderer/index.js"
},
"./node": {
"types": "./lib/mjs/node/index.d.ts",
"node": "./lib/cjs/node/index.js",
"import": "./lib/mjs/node/index.js",
"require": "./lib/cjs/node/index.js"
}
},
"scripts": {
"build": "node ./scripts/build.mjs",
"build:link": "yarn run build && yarn unlink;yarn link",
"build:watch": "run-s build:link && yarn run build --watch",
"test": "yarn run build && jest",
"test:watch": "yarn run build && jest --watchAll --no-cache",
"test:dev": "run-s build && run-p test:watch build:watch",
"preversion": "yarn build",
"preversion::with-tests": "yarn build && yarn test",
"clean": "./scripts/clean.sh",
"postversion": "node ./scripts/release.mjs latest",
"release": "yarn build && yarn version --patch --non-interactive"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/3fv/electron-utility-process-manager.git"
},
"keywords": [
"typescript",
"logger",
"proxy"
],
"files": [
"**/*.d.ts",
"**/*.js",
"**/*.map",
"package.json"
],
"dependencies": {
"@3fv/deferred": "^1.2.12",
"@3fv/guard": "^1.4.38",
"@3fv/prelude-ts": "^0.8.32",
"chalk": "^5.3.0",
"debug": "^4.3.6",
"lodash": "^4.17.21",
"tracer": "^1.3.0",
"ts-pattern": "^5.5.0"
},
"peerDependencies": {
"electron": "^31"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/chalk": "^2.2.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "^22.9.0",
"@types/shelljs": "^0.8.15",
"cross-env": "^7.0.3",
"electron": "31.3.0",
"electronmon": "^2.0.3",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"semver": "^7.6.3",
"shelljs": "^0.8.5",
"source-map-support": "^0.5.21",
"supports-color": "^9.4.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"zx": "^8.1.4"
}
}