@hathbanger/jr-studio 0.0.5 → 0.0.7
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.js +61983 -60329
- package/package.json +15 -12
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hathbanger/jr-studio",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "AI music generation CLI powered by
|
|
3
|
+
"version": "0.0.7",
|
|
4
|
+
"description": "AI music generation CLI powered by Suno",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"files": [
|
|
@@ -11,15 +11,24 @@
|
|
|
11
11
|
"bin": {
|
|
12
12
|
"jr-studio": "./dist/index.js"
|
|
13
13
|
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "esbuild src/index.ts --bundle --platform=node --target=node20 --outfile=dist/index.js --external:fsevents",
|
|
16
|
+
"dev": "tsx src/index.ts",
|
|
17
|
+
"lint": "eslint src/**/*.ts",
|
|
18
|
+
"start": "node dist/index.js",
|
|
19
|
+
"prepublishOnly": "node scripts/prepublish.js",
|
|
20
|
+
"postpublish": "PREPUBLISH_RESTORE=1 node scripts/prepublish.js"
|
|
21
|
+
},
|
|
14
22
|
"dependencies": {
|
|
15
|
-
"
|
|
16
|
-
"ora": "^5.4.1",
|
|
17
|
-
"cli-progress": "^3.12.0",
|
|
23
|
+
"@hathbanger/tap-core": "^1.0.0",
|
|
18
24
|
"@scure/bip32": "^2.0.1",
|
|
19
25
|
"@scure/bip39": "^2.0.1",
|
|
20
26
|
"@x402/core": "^2.0.0",
|
|
21
27
|
"@x402/evm": "^2.0.0",
|
|
22
28
|
"@x402/fetch": "^2.0.0",
|
|
29
|
+
"cli-progress": "^3.12.0",
|
|
30
|
+
"commander": "^12.1.0",
|
|
31
|
+
"ora": "^5.4.1",
|
|
23
32
|
"viem": "^2.43.5"
|
|
24
33
|
},
|
|
25
34
|
"devDependencies": {
|
|
@@ -31,11 +40,5 @@
|
|
|
31
40
|
"eslint": "^8.57.0",
|
|
32
41
|
"tsx": "^4.19.2",
|
|
33
42
|
"typescript": "^5.5.0"
|
|
34
|
-
},
|
|
35
|
-
"scripts": {
|
|
36
|
-
"build": "esbuild src/index.ts --bundle --platform=node --target=node20 --outfile=dist/index.js --external:fsevents",
|
|
37
|
-
"dev": "tsx src/index.ts",
|
|
38
|
-
"lint": "eslint src/**/*.ts",
|
|
39
|
-
"start": "node dist/index.js"
|
|
40
43
|
}
|
|
41
|
-
}
|
|
44
|
+
}
|