-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "@dimensiondev/webextension-shim",
"version": "0.0.3",
"description": "This shim will run a compiler in runtime. It is slow when transforming big files. To speed up, prebuilt your JS files so it won't go through the compiler in runtime.",
"repository": "https://github.com/DimensionDev/webextension-polyfill",
"license": "MIT",
"bin": {
"web-ext-prebuilt": "./dist/bin/prebuilt.js",
"web-ext-prebuilts": "./dist/bin/prebuilts.js"
},
"scripts": {
"build": "tsc",
"bundle": "rollup -c",
"prepublishOnly": "rimraf dist && npm run bundle && npm run build",
"serve": "serve .",
"start": "rollup -c -w"
},
"dependencies": {
"async-call-rpc": "^4.2.1",
"buffer": "^6.0.3",
"systemjs": "6.12.1",
"web-ext-types": "^3.2.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/systemjs": "^6.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.69.0",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.2.3",
"uglify-es": "^3.3.9"
},
"peerDependencies": {
"typescript": "^3.8.3"
}
}