-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
43 lines (43 loc) · 1.5 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
{
"name": "extpay",
"version": "3.0.7",
"description": "The JavaScript library for https://extensionpay.com - payments for browser extensions, no server needed.",
"main": "./dist/ExtPay.common.js",
"module": "./dist/ExtPay.module.js",
"unpkg": "./dist/ExtPay.js",
"jsdelivr": "./dist/ExtPay.js",
"types": "./types.d.ts",
"scripts": {
"replace_localhost": "sed -i '' \"s|http://localhost:3000|https://extensionpay\\.com|g\" sample-extension-mv2/manifest.json sample-extension-mv3/manifest.json",
"replace_extpay": "sed -i '' \"s|https://extensionpay\\.com|http://localhost:3000|g\" sample-extension-mv2/manifest.json sample-extension-mv3/manifest.json",
"dev": "npm run replace_extpay && rollup -w -c rollup.config.dev.js || npm run replace_localhost",
"dist": "rollup -c rollup.config.release.js && npm run replace_localhost"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Glench/ExtPay.git"
},
"keywords": [
"browser",
"extension",
"chrome-extension",
"firefox-extension",
"payments"
],
"author": "ExtensionPay.com",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Glench/ExtPay/issues"
},
"homepage": "https://extensionpay.com",
"dependencies": {
"webextension-polyfill": "^0.7.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"rollup": "^2.36.1",
"rollup-plugin-terser": "^7.0.2"
}
}