-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.73 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
{
"name": "vendure-plugin-bitcoin-lightning-via-clink",
"version": "0.3.0",
"description": "Bitcoin Lightning payments for Vendure via the CLINK protocol (Nostr-native static payment codes)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"dev:test-app": "npm run build && rm -rf test-app/node_modules/vendure-plugin-bitcoin-lightning-via-clink && cp -r dist test-app/node_modules/vendure-plugin-bitcoin-lightning-via-clink",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint \"src/**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"vendure",
"vendure-plugin",
"bitcoin",
"lightning",
"lightning-network",
"nostr",
"clink",
"payments",
"ecommerce",
"bolt11"
],
"author": "WoompaLoompa",
"license": "GPL-3.0",
"peerDependencies": {
"@vendure/core": "^3.0.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"typeorm": "^0.3.0"
},
"dependencies": {
"@shocknet/clink-sdk": "^1.5.5",
"nostr-tools": "^2.15.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@vendure/cli": "^3.0.0",
"@vendure/core": "^3.0.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"typeorm": "^0.3.0",
"ts-jest": "^29.4.12",
"typescript": "^5.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/WoompaLoompa/vendure-clink.git"
},
"homepage": "https://github.com/WoompaLoompa/vendure-clink#readme",
"bugs": {
"url": "https://github.com/WoompaLoompa/vendure-clink/issues"
}
}