-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.88 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
{
"name": "@moneydevkit/create",
"version": "0.7.0-beta.8",
"description": "Interactive CLI for bootstrapping Money Dev Kit credentials.",
"type": "module",
"bin": {
"create": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --clean && node scripts/copy-templates.mjs",
"dev": "tsup src/index.ts --watch --format esm,cjs --dts",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"run:local": "npm run build && node dist/index.js --base-url http://localhost:3900",
"prepublishOnly": "npm run build",
"test": "node --test --loader ts-node/esm src/**/*.test.ts"
},
"dependencies": {
"@clack/prompts": "^0.10.0",
"@moneydevkit/api-contract": "^0.1.17",
"@moneydevkit/lightning-js": "^0.1.60",
"@orpc/client": "^1.3.0",
"@orpc/contract": "^1.3.0",
"bip39": "^3.1.0",
"clipboardy": "^4.0.0",
"minimist": "^1.2.8",
"open": "^10.1.0",
"semver": "^7.6.3",
"set-cookie-parser": "^2.6.0",
"undici": "^7.16.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.15.0",
"@types/minimist": "^1.2.5",
"@types/node": "^22.9.0",
"@types/semver": "^7.7.1",
"@types/set-cookie-parser": "^2.4.10",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^9.15.0",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/moneydevkit/mdk-checkout.git",
"directory": "packages/create"
},
"homepage": "https://github.com/moneydevkit/mdk-checkout/blob/main/packages/create/README.md",
"publishConfig": {
"access": "public"
},
"keywords": [
"moneydevkit",
"lightning",
"cli"
]
}