@paybutton/react 3.0.0 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/{src → lib}/components/PaymentDialog/PaymentDialog.d.ts +1 -0
- package/dist/{src → lib}/components/Widget/Widget.d.ts +2 -0
- package/dist/src/App.d.ts +3 -0
- package/dist/src/main.d.ts +1 -0
- package/package.json +10 -15
- /package/dist/{src → lib}/assets/edit-pencil.d.ts +0 -0
- /package/dist/{src → lib}/components/BarChart/BarChart.d.ts +0 -0
- /package/dist/{src → lib}/components/BarChart/BarChart.stories.d.ts +0 -0
- /package/dist/{src → lib}/components/BarChart/index.d.ts +0 -0
- /package/dist/{src → lib}/components/Button/Button.d.ts +0 -0
- /package/dist/{src → lib}/components/Button/Button.stories.d.ts +0 -0
- /package/dist/{src → lib}/components/Button/index.d.ts +0 -0
- /package/dist/{src → lib}/components/PayButton/PayButton.d.ts +0 -0
- /package/dist/{src → lib}/components/PayButton/PayButton.stories.d.ts +0 -0
- /package/dist/{src → lib}/components/PayButton/index.d.ts +0 -0
- /package/dist/{src → lib}/components/PaymentDialog/PaymentDialog.stories.d.ts +0 -0
- /package/dist/{src → lib}/components/PaymentDialog/index.d.ts +0 -0
- /package/dist/{src → lib}/components/Widget/Widget.stories.d.ts +0 -0
- /package/dist/{src → lib}/components/Widget/WidgetContainer.d.ts +0 -0
- /package/dist/{src → lib}/components/Widget/index.d.ts +0 -0
- /package/dist/{src → lib}/components/index.d.ts +0 -0
- /package/dist/{src → lib}/tests/opReturn.test.d.ts +0 -0
- /package/dist/{src → lib}/themes/Theme.d.ts +0 -0
- /package/dist/{src → lib}/themes/index.d.ts +0 -0
- /package/dist/{src → lib}/themes/themes/orange.d.ts +0 -0
- /package/dist/{src → lib}/themes/themes/paybutton.d.ts +0 -0
- /package/dist/{src → lib}/themes/themes/xec.d.ts +0 -0
- /package/dist/{src → lib}/util/address.d.ts +0 -0
- /package/dist/{src → lib}/util/api-client.d.ts +0 -0
- /package/dist/{src → lib}/util/format.d.ts +0 -0
- /package/dist/{src → lib}/util/opReturn.d.ts +0 -0
- /package/dist/{src → lib}/util/randomizeSats.d.ts +0 -0
- /package/dist/{src → lib}/util/satoshis.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,23 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paybutton/react",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "The easiest way to accept eCash online",
|
|
5
|
-
"author": "
|
|
5
|
+
"author": "Blockchain Ventures Corp.",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/PayButton/paybutton.git"
|
|
10
10
|
},
|
|
11
|
-
"
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
12
14
|
"module": "dist/index.modern.js",
|
|
15
|
+
"main": "dist/index.js",
|
|
13
16
|
"source": "index.tsx",
|
|
14
17
|
"engines": {
|
|
15
18
|
"node": ">=10"
|
|
16
19
|
},
|
|
17
20
|
"scripts": {
|
|
18
|
-
"build": "microbundle --jsx React.createElement --format modern,cjs",
|
|
19
|
-
"lint": "eslint '
|
|
20
|
-
"prettier": "prettier --write '
|
|
21
|
+
"build": "tsc --p ./tsconfig-build.json && microbundle --jsx React.createElement --format modern,cjs",
|
|
22
|
+
"lint": "eslint 'lib/**/*.{ts,tsx}' --fix",
|
|
23
|
+
"prettier": "prettier --write 'lib/**/*.ts'",
|
|
21
24
|
"dev": "concurrently yarn:watch yarn:storybook",
|
|
22
25
|
"storybook": "start-storybook -p 6006",
|
|
23
26
|
"watch": "microbundle watch --jsx React.createElement --no-compress --format modern,cjs",
|
|
@@ -71,9 +74,6 @@
|
|
|
71
74
|
"typescript": "^4.8.2",
|
|
72
75
|
"yarn-run-all": "^3.1.1"
|
|
73
76
|
},
|
|
74
|
-
"files": [
|
|
75
|
-
"dist"
|
|
76
|
-
],
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@material-ui/core": "4.12.4",
|
|
79
79
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -93,13 +93,8 @@
|
|
|
93
93
|
"ts-jest": "^29.1.1",
|
|
94
94
|
"xecaddrjs": "^0.0.1"
|
|
95
95
|
},
|
|
96
|
-
"husky": {
|
|
97
|
-
"hooks": {
|
|
98
|
-
"pre-commit": "lint-staged"
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
96
|
"lint-staged": {
|
|
102
|
-
"
|
|
97
|
+
"lib/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
|
|
103
98
|
"eslint --fix",
|
|
104
99
|
"prettier --write"
|
|
105
100
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|