-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.5 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
{
"name": "@icpay/sdk",
"version": "1.3.43",
"description": "Official icpay SDK for Internet Computer payments",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && pnpm run copy-declarations",
"copy-declarations": "mkdir -p dist && cp -r src/declarations dist/",
"postbuild": "pnpm run copy-declarations",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write src/**/*.ts",
"prepare": "pnpm run build"
},
"keywords": [
"icpay",
"internet-computer",
"icp",
"blockchain",
"payments",
"sdk"
],
"author": "icpay",
"license": "MIT",
"dependencies": {
"@dfinity/agent": "^2.4.1",
"@dfinity/auth-client": "^2.4.1",
"@dfinity/identity": "^2.4.1",
"@dfinity/principal": "^2.4.1",
"@dfinity/candid": "^2.4.1",
"@dfinity/ledger-icp": "^3.0.0",
"@dfinity/sns": "^3.7.0",
"@windoge98/plug-n-play": "^0.0.70",
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/icpay/icpay-sdk.git"
},
"bugs": {
"url": "https://github.com/icpay/icpay-sdk/issues"
},
"homepage": "https://github.com/icpay/icpay-sdk#readme"
}