@blocklet/payment-vendor 1.20.6

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,86 @@
1
+ {
2
+ "name": "@blocklet/payment-vendor",
3
+ "version": "1.20.6",
4
+ "description": "Payment Kit Vendor SDK - Signature verification, lifecycle management, and type definition integration solution",
5
+ "keywords": [
6
+ "payment-kit",
7
+ "vendor",
8
+ "sdk",
9
+ "auth",
10
+ "signature",
11
+ "lifecycle"
12
+ ],
13
+ "author": "ArcBlock <support@arcblock.io>",
14
+ "homepage": "https://github.com/blocklet/payment-kit#readme",
15
+ "license": "Apache-2.0",
16
+ "main": "lib/index.js",
17
+ "typings": "lib/index.d.ts",
18
+ "files": [
19
+ "lib",
20
+ "examples",
21
+ "LICENSE",
22
+ "package.json",
23
+ "README.md"
24
+ ],
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/blocklet/payment-kit.git"
31
+ },
32
+ "scripts": {
33
+ "lint": "eslint src",
34
+ "lint:fix": "pnpm run lint --fix",
35
+ "clean": "rm -fr lib",
36
+ "prebuild": "pnpm run clean",
37
+ "build": "tsc",
38
+ "build:watch": "pnpm run build -w",
39
+ "test": "jest --runInBand",
40
+ "test:watch": "jest --watch",
41
+ "coverage": "pnpm run test --coverage",
42
+ "dev:setup": "npm link",
43
+ "dev:test": "cd dev-test && npm install && npm run dev",
44
+ "dev:full": "concurrently \"npm run build:watch\" \"npm run dev:test\""
45
+ },
46
+ "bugs": {
47
+ "url": "https://github.com/blocklet/payment-kit/issues"
48
+ },
49
+ "dependencies": {
50
+ "@blocklet/logger": "^1.16.51",
51
+ "@blocklet/sdk": "^1.16.0",
52
+ "@ocap/util": "^1.21.3",
53
+ "@ocap/wallet": "^1.21.3",
54
+ "json-stable-stringify": "^1.3.0",
55
+ "stable-stringify": "^1.0.0"
56
+ },
57
+ "devDependencies": {
58
+ "@arcblock/eslint-config": "^0.3.3",
59
+ "@arcblock/eslint-config-ts": "^0.3.3",
60
+ "@types/express": "^4.17.21",
61
+ "@types/jest": "^29.5.13",
62
+ "@types/node": "^18.19.112",
63
+ "eslint": "^8.57.1",
64
+ "express": "^4.19.2",
65
+ "import-sort-style-module": "^6.0.0",
66
+ "jest": "^29.7.0",
67
+ "prettier": "^3.6.0",
68
+ "prettier-plugin-import-sort": "^0.0.7",
69
+ "supertest": "^6.3.4",
70
+ "ts-jest": "^29.2.5",
71
+ "ts-node": "^10.9.2",
72
+ "type-fest": "^4.41.0",
73
+ "typescript": "5.5.4"
74
+ },
75
+ "importSort": {
76
+ ".js, .jsx, .mjs": {
77
+ "parser": "babylon",
78
+ "style": "module"
79
+ },
80
+ ".ts, .tsx": {
81
+ "style": "module",
82
+ "parser": "typescript"
83
+ }
84
+ },
85
+ "gitHead": "d04ed7906bd1e13240198623aa0d4eef4db8886e"
86
+ }