@halliday-sdk/payments 0.1.0-beta-1

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/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@halliday-sdk/payments",
3
+ "version": "0.1.0-beta-1",
4
+ "exports": {
5
+ ".": {
6
+ "require": "./dist/paymentsWidget/index.cjs.min.js",
7
+ "import": "./dist/paymentsWidget/index.esm.min.js",
8
+ "types": "./dist/paymentsWidget/index.d.ts"
9
+ }
10
+ },
11
+ "main": "dist/paymentsWidget/index.cjs.min.js",
12
+ "module": "dist/paymentsWidget/index.esm.min.js",
13
+ "umd:main": "dist/paymentsWidget/index.umd.min.js",
14
+ "unpkg": "dist/paymentsWidget/index.umd.min.js",
15
+ "types": "dist/paymentsWidget/index.d.ts",
16
+ "author": "Halliday",
17
+ "license": "UNLICENSED",
18
+ "files": [
19
+ "dist/**/*"
20
+ ],
21
+ "dependencies": {
22
+ "axios": "^1.8.4",
23
+ "reflect-metadata": "^0.2.2",
24
+ "zod": "^3.25.0"
25
+ },
26
+ "devDependencies": {
27
+ "axios-mock-adapter": "^2.1.0",
28
+ "ethers": "^6.12.1",
29
+ "jest-environment-jsdom": "30.0.0-beta.3",
30
+ "viem": "2.30.6"
31
+ },
32
+ "peerDependencies": {
33
+ "ethers": "^6.12.1",
34
+ "viem": "^2.27.2"
35
+ },
36
+ "scripts": {
37
+ "test": "yarn test:node && yarn test:web",
38
+ "test:node": "npx jest --config jest.node.config.js",
39
+ "test:web": "npx jest --config jest.web.config.js",
40
+ "build": "rm -rf dist; npx rollup -c",
41
+ "build:prod": "NODE_ENV=production yarn build",
42
+ "safe-publish": "rm -rf node_modules dist && yarn install && yarn build:prod && yarn npm publish --access public"
43
+ },
44
+ "targets": {
45
+ "main": {
46
+ "isLibrary": true,
47
+ "sourceMap": true
48
+ },
49
+ "module": {
50
+ "isLibrary": true,
51
+ "sourceMap": true
52
+ }
53
+ },
54
+ "packageManager": "yarn@4.5.0+sha512.837566d24eec14ec0f5f1411adb544e892b3454255e61fdef8fd05f3429480102806bac7446bc9daff3896b01ae4b62d00096c7e989f1596f2af10b927532f39"
55
+ }