@furlow/discord 1.0.3 → 1.0.4
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 +15 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@furlow/discord",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Discord.js adapter for FURLOW bot framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"furlow",
|
|
@@ -47,30 +47,30 @@
|
|
|
47
47
|
"files": [
|
|
48
48
|
"dist"
|
|
49
49
|
],
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "tsup",
|
|
52
|
+
"clean": "rm -rf dist .turbo",
|
|
53
|
+
"dev": "tsup --watch",
|
|
54
|
+
"lint": "eslint src/",
|
|
55
|
+
"test": "vitest run",
|
|
56
|
+
"test:unit": "vitest run --dir src",
|
|
57
|
+
"test:integration": "vitest run --dir tests/integration",
|
|
58
|
+
"typecheck": "tsc --noEmit"
|
|
59
|
+
},
|
|
50
60
|
"dependencies": {
|
|
51
61
|
"@discordjs/opus": "^0.9.0",
|
|
52
62
|
"@discordjs/voice": "^0.17.0",
|
|
63
|
+
"@furlow/core": "^1.0.8",
|
|
64
|
+
"@furlow/schema": "^1.0.3",
|
|
53
65
|
"discord.js": "^14.14.0",
|
|
54
66
|
"play-dl": "^1.9.0",
|
|
55
67
|
"prism-media": "^1.3.5",
|
|
56
|
-
"youtube-sr": "^4.3.0"
|
|
57
|
-
"@furlow/core": "1.0.3",
|
|
58
|
-
"@furlow/schema": "1.0.3"
|
|
68
|
+
"youtube-sr": "^4.3.0"
|
|
59
69
|
},
|
|
60
70
|
"devDependencies": {
|
|
61
71
|
"@types/node": "^20.11.0",
|
|
62
72
|
"tsup": "^8.0.0",
|
|
63
73
|
"typescript": "^5.3.0",
|
|
64
74
|
"vitest": "^1.2.0"
|
|
65
|
-
},
|
|
66
|
-
"scripts": {
|
|
67
|
-
"build": "tsup",
|
|
68
|
-
"clean": "rm -rf dist .turbo",
|
|
69
|
-
"dev": "tsup --watch",
|
|
70
|
-
"lint": "eslint src/",
|
|
71
|
-
"test": "vitest run",
|
|
72
|
-
"test:unit": "vitest run --dir src",
|
|
73
|
-
"test:integration": "vitest run --dir tests/integration",
|
|
74
|
-
"typecheck": "tsc --noEmit"
|
|
75
75
|
}
|
|
76
|
-
}
|
|
76
|
+
}
|