@moneydevkit/create 0.10.0-beta.1 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +0 -0
- package/package.json +14 -15
package/dist/index.cjs
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moneydevkit/create",
|
|
3
|
-
"version": "0.10.0
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Interactive CLI for bootstrapping Money Dev Kit credentials.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -9,19 +9,9 @@
|
|
|
9
9
|
"files": [
|
|
10
10
|
"dist"
|
|
11
11
|
],
|
|
12
|
-
"scripts": {
|
|
13
|
-
"build": "tsup src/index.ts --dts --format esm,cjs --clean && node scripts/copy-templates.mjs",
|
|
14
|
-
"dev": "tsup src/index.ts --watch --format esm,cjs --dts",
|
|
15
|
-
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
16
|
-
"typecheck": "tsc --noEmit",
|
|
17
|
-
"run:local": "npm run build && node dist/index.js --base-url http://localhost:3900",
|
|
18
|
-
"prepublishOnly": "npm run build",
|
|
19
|
-
"test": "node --test --loader ts-node/esm src/**/*.test.ts"
|
|
20
|
-
},
|
|
21
12
|
"dependencies": {
|
|
22
13
|
"@clack/prompts": "^0.10.0",
|
|
23
|
-
"@moneydevkit/
|
|
24
|
-
"@moneydevkit/lightning-js": "0.1.66",
|
|
14
|
+
"@moneydevkit/lightning-js": "0.1.68",
|
|
25
15
|
"@orpc/client": "^1.3.0",
|
|
26
16
|
"@orpc/contract": "^1.3.0",
|
|
27
17
|
"bip39": "^3.1.0",
|
|
@@ -30,7 +20,8 @@
|
|
|
30
20
|
"open": "^10.1.0",
|
|
31
21
|
"semver": "^7.6.3",
|
|
32
22
|
"set-cookie-parser": "^2.6.0",
|
|
33
|
-
"undici": "^7.16.0"
|
|
23
|
+
"undici": "^7.16.0",
|
|
24
|
+
"@moneydevkit/api-contract": "0.1.21"
|
|
34
25
|
},
|
|
35
26
|
"devDependencies": {
|
|
36
27
|
"@eslint/eslintrc": "^3.1.0",
|
|
@@ -63,5 +54,13 @@
|
|
|
63
54
|
"moneydevkit",
|
|
64
55
|
"lightning",
|
|
65
56
|
"cli"
|
|
66
|
-
]
|
|
67
|
-
|
|
57
|
+
],
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "tsup src/index.ts --dts --format esm,cjs --clean && node scripts/copy-templates.mjs",
|
|
60
|
+
"dev": "tsup src/index.ts --watch --format esm,cjs --dts",
|
|
61
|
+
"lint": "eslint \"src/**/*.{ts,tsx}\"",
|
|
62
|
+
"typecheck": "tsc --noEmit",
|
|
63
|
+
"run:local": "npm run build && node dist/index.js --base-url http://localhost:3900",
|
|
64
|
+
"test": "node --test --loader ts-node/esm src/**/*.test.ts"
|
|
65
|
+
}
|
|
66
|
+
}
|