-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.43 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
{
"name": "medusa-payment-solana",
"author": {
"name": "Rasmus Puls",
"url": "https://funkyton.com/"
},
"homepage": "https://funkyton.com/medusa-payment-solana-preview/",
"version": "0.3.3",
"description": "Solana crypto currency payment provider for MedusaJS 2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/rpuls/medusa-payment-solana.git"
},
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./job": "./dist/job.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc --build ./tsconfig.json",
"test": "jest",
"prepare": "cross-env NODE_ENV=production npm run build",
"rebuild": "npm rebuild"
},
"keywords": [
"medusa",
"medusa-plugin",
"medusa-plugin-payment",
"payment",
"solana",
"cryptocurrency"
],
"license": "MIT",
"peerDependencies": {
"@medusajs/framework": "^2.8.4",
"@medusajs/medusa": "^2.8.4"
},
"dependencies": {
"@solana/web3.js": "^1.98.2",
"bip39": "^3.1.0",
"crypto": "^1.0.1",
"ed25519-hd-key": "^1.3.0"
},
"devDependencies": {
"@medusajs/framework": "^2.8.4",
"@medusajs/medusa": "^2.8.4",
"@types/node": "^20.10.5",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"jest-mock-extended": "^4.0.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"@types/jest": "^29.5.14",
"typescript": "^5.3.3"
}
}