-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 KB
/
package.json
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
{
"name": "ultrastar2ass",
"version": "1.1.3",
"description": "Convert Ultrastar karaoke files to ASS files",
"main": "dist/index.js",
"types": "src/types.d.ts",
"bin": {
"ultrastar2ass": "dist/index.js"
},
"scripts": {
"build": "tsc --build",
"start": "tsc --build && ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"karaoke",
"ass",
"ultrastar"
],
"author": "Guillaume Lebigot <[email protected]>",
"contributors": [
"Florent Berthelot"
],
"license": "MIT",
"bugs": {
"url": "https://lab.shelter.moe/axelterizaki/ultrastar2ass/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://lab.shelter.moe/axelterizaki/ultrastar2ass.git"
},
"dependencies": {
"ass-stringify": "^0.1.3"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}