forked from fvulich/electron-chrome-extensions
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 1.92 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
77
{
"name": "electron-chrome-extensions",
"version": "3.9.0",
"description": "Chrome extension support for Electron",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && webpack",
"pretest": "esbuild spec/fixtures/crx-test-preload.ts --bundle --external:electron --outfile=spec/fixtures/crx-test-preload.js --platform=node",
"test": "node ./script/spec-runner.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"electron",
"chrome",
"extensions"
],
"repository": "https://github.com/samuelmaddock/electron-browser-shell",
"author": "Samuel Maddock <[email protected]>",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"debug": "^4.3.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/chrome": "^0.0.122",
"@types/mocha": "^8.0.4",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"colors": "^1.4.0",
"electron": "27.1.3",
"esbuild": "^0.12.14",
"mocha": "^8.2.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"uuid": "^8.3.1",
"walkdir": "^0.4.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"peerDependencies": {},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"electron": "10.1.0"
}
}
],
"@babel/preset-typescript"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
"@babel/plugin-proposal-optional-chaining"
]
},
"volta": {
"node": "14.15.3"
}
}