about summary refs log tree commit diff
path: root/users/Profpatsch/lyric/extension/package.json
blob: 722da81b47197e179a6ff11c32be7df53c6ae083 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
  "name": "profpatsch-jump-to-lrc-position",
  "displayName": "Jump to .lrc Position in mpv",
  "description": "Reads a timestamp from the current file and pipes it to a mpv socket",
  "version": "0.0.1",
  "engines": {
    "vscode": "^1.75.0"
  },
  "categories": [
    "Other"
  ],
  "main": "./out/extension.js",
  "activationEvents": [
    "onLanguage:lrc"
  ],
  "contributes": {
    "commands": [
      {
        "command": "extension.jumpToLrcPosition",
        "title": "Jump to .lrc Position",
        "category": "LRC"
      }
    ],
    "languages": [
      {
        "id": "lrc",
        "extensions": [
          ".lrc"
        ],
        "aliases": [
          "Lyric file"
        ]
      }
    ]
  },
  "scripts": {
    "vscode:prepublish": "npm run compile",
    "compile": "tsc",
    "install-extension": "vsce package --allow-missing-repository --out ./jump-to-lrc-position.vsix && code --install-extension ./jump-to-lrc-position.vsix"
  },
  "devDependencies": {
    "vscode": "^1.1.37",
    "@eslint/js": "^9.10.0",
    "@types/eslint__js": "^8.42.3",
    "@types/node": "^22.5.5",
    "@typescript-eslint/parser": "^8.7.0",
    "eslint": "^9.10.0",
    "globals": "^15.9.0",
    "typescript": "^5.6.2",
    "typescript-eslint": "^8.6.0"
  }
}