kimaki 0.4.14 → 0.4.15
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/package.json +12 -11
- package/src/cli.ts +0 -0
package/package.json
CHANGED
|
@@ -2,7 +2,17 @@
|
|
|
2
2
|
"name": "kimaki",
|
|
3
3
|
"module": "index.ts",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.4.
|
|
5
|
+
"version": "0.4.15",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "tsx --env-file .env src/cli.ts",
|
|
8
|
+
"prepublishOnly": "pnpm tsc",
|
|
9
|
+
"dev:bun": "DEBUG=1 bun --env-file .env src/cli.ts",
|
|
10
|
+
"watch": "tsx scripts/watch-session.ts",
|
|
11
|
+
"test:events": "tsx test-events.ts",
|
|
12
|
+
"pcm-to-mp3": "bun scripts/pcm-to-mp3",
|
|
13
|
+
"test:send": "tsx send-test-message.ts",
|
|
14
|
+
"register-commands": "tsx scripts/register-commands.ts"
|
|
15
|
+
},
|
|
6
16
|
"repository": "https://github.com/remorses/kimaki",
|
|
7
17
|
"bin": "bin.js",
|
|
8
18
|
"files": [
|
|
@@ -44,14 +54,5 @@
|
|
|
44
54
|
"string-dedent": "^3.0.2",
|
|
45
55
|
"undici": "^7.16.0",
|
|
46
56
|
"zod": "^4.0.17"
|
|
47
|
-
},
|
|
48
|
-
"scripts": {
|
|
49
|
-
"dev": "tsx --env-file .env src/cli.ts",
|
|
50
|
-
"dev:bun": "DEBUG=1 bun --env-file .env src/cli.ts",
|
|
51
|
-
"watch": "tsx scripts/watch-session.ts",
|
|
52
|
-
"test:events": "tsx test-events.ts",
|
|
53
|
-
"pcm-to-mp3": "bun scripts/pcm-to-mp3",
|
|
54
|
-
"test:send": "tsx send-test-message.ts",
|
|
55
|
-
"register-commands": "tsx scripts/register-commands.ts"
|
|
56
57
|
}
|
|
57
|
-
}
|
|
58
|
+
}
|
package/src/cli.ts
CHANGED
|
File without changes
|