-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.33 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.33 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@paygrid-network/sdk",
"version": "0.1.0-beta.12",
"description": "Official Paygrid Network TypeScript/JavaScript SDK - Chain-Agnostic Payment Clearing Network",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"test": "mocha -r ts-node/register/transpile-only 'test/**/*.test.ts'",
"test:watch": "mocha -r ts-node/register/transpile-only 'test/**/*.test.ts' --watch --watch-files src/**/*.ts,test/**/*.ts",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm run test && npm run build",
"prepare": "npm run build",
"pg:sign-payment-intent": "ts-node quickstart/sign-payment-intent.ts",
"pg:payment-client": "ts-node quickstart/payment-client.ts",
"pg:corridor-quotes": "ts-node quickstart/corridor-quotes.ts",
"demo": "npm run pg:sign-payment-intent && echo '\n=================\n' && npm run pg:payment-client",
"demo:watch": "nodemon --exec 'npm run demo'"
},
"keywords": [
"blockchain",
"payments",
"stablecoins",
"web3",
"ethereum",
"crypto",
"paygrid",
"paygrid-sdk",
"paygrid-sdk-js"
],
"author": "m0ughite <moughite@paygrid.co>",
"repository": {
"type": "git",
"url": "git+https://github.com/paygrid-tech/paygrid-sdk.git"
},
"bugs": {
"url": "https://github.com/paygrid-tech/paygrid-sdk/issues"
},
"homepage": "https://docs.paygrid.network",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/mocha": "^10.0.1",
"mocha": "^10.2.0",
"chai": "^4.3.7",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@uniswap/permit2-sdk": "latest",
"@types/chai": "^4.3.5",
"axios": "^1.6.0",
"ethers": "^5.7.2"
},
"type": "commonjs"
}