@raphiiko/wavelink-cli 0.0.1

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 ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@raphiiko/wavelink-cli",
3
+ "version": "0.0.1",
4
+ "description": "Command line interface for Elgato Wave Link 3.0",
5
+ "author": "Raphiiko",
6
+ "license": "MIT",
7
+ "homepage": "https://github.com/Raphiiko/wavelink-cli",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/Raphiiko/wavelink-cli.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/Raphiiko/wavelink-cli/issues"
14
+ },
15
+ "keywords": [
16
+ "wavelink",
17
+ "cli",
18
+ "typescript"
19
+ ],
20
+ "module": "src/index.ts",
21
+ "type": "module",
22
+ "bin": {
23
+ "wavelink-cli": "dist/index.js"
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "src"
28
+ ],
29
+ "scripts": {
30
+ "build": "bun build ./src/index.ts --target=node --outfile dist/index.js",
31
+ "start": "bun run src/index.ts",
32
+ "format": "prettier --write \"src/**/*.ts\"",
33
+ "format:check": "prettier --check \"src/**/*.ts\"",
34
+ "lint": "eslint src/**/*.ts",
35
+ "lint:fix": "eslint src/**/*.ts --fix",
36
+ "typecheck": "tsc --noEmit",
37
+ "check": "bun run format:check && bun run lint && bun run typecheck",
38
+ "prepublishOnly": "bun run build && bun run check"
39
+ },
40
+ "devDependencies": {
41
+ "@types/bun": "latest",
42
+ "@typescript-eslint/eslint-plugin": "^8.52.0",
43
+ "@typescript-eslint/parser": "^8.52.0",
44
+ "eslint": "^9.39.2",
45
+ "eslint-config-prettier": "^10.1.8",
46
+ "eslint-plugin-prettier": "^5.5.4",
47
+ "prettier": "^3.7.4",
48
+ "typescript": "^5"
49
+ },
50
+ "peerDependencies": {
51
+ "typescript": "^5"
52
+ },
53
+ "dependencies": {
54
+ "@raphiiko/wavelink-ts": "^1.1.0",
55
+ "commander": "^14.0.2"
56
+ }
57
+ }