-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
76 lines (76 loc) · 1.95 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
75
76
{
"name": "pluggable-electron",
"version": "1.0.0",
"description": "A framework to create a plugin API in Electron apps",
"keywords": [
"electron",
"plugin",
"framework",
"extend",
"extension"
],
"module": "./dist/execution.es.min.js",
"main": "./dist/pluginMgr.min.js",
"exports": {
".": {
"node": "./dist/pluginMgr.min.js",
"default": "./dist/execution.es.min.js"
},
"./renderer": "./dist/execution.es.min.js",
"./renderer.umd": "./dist/execution.umd.min.js",
"./main": "./dist/pluginMgr.min.js",
"./preload": "./dist/facade.min.js",
"./facade": "./dist/facade.min.js"
},
"typesVersions": {
"*": {
"preload": [
"./dist/facade.min",
"./dist/facade.d.ts"
],
"renderer": [
"./dist/execution.es.min",
"./dist/execution.es.d.ts"
],
"main": [
"./dist/pluginMgr.min",
"./dist/pluginMgr.d.ts"
]
}
},
"scripts": {
"docs": "node docs/genDocs.js",
"build": "rollup --config && tsc",
"watch": "rollup --config -w",
"types": "tsc",
"test": "jest",
"test:coverage": "jest --coverage && coverage-shield",
"watch:test": "jest --watch",
"lint": "npx eslint --ignore-pattern '*.test.js' ./execution/ ./facade/ ./pluginMgr/"
},
"author": "Igor Honhoff",
"repository": "github:dutchigor/pluggable-electron",
"license": "MIT",
"dependencies": {
"@npmcli/arborist": "^7.3.1",
"pacote": "^17.0.6"
},
"devDependencies": {
"@kayahr/jest-electron-runner": "^29.11.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.11",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-coverage-shield": "^1.1.2",
"jsdoc-to-markdown": "^8.0.0",
"rollup": "^3.29.4",
"rollup-jest": "^3.1.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"electron": ">= 13"
},
"bugs": {
"url": "https://github.com/dutchigor/pluggable-electron/issues"
}
}