-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 967 Bytes
/
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
{
"name": "ultra-scrap",
"version": "1.0.0",
"description": "Download any song from biggest database of UltraStar songs for your karaoke party.",
"type": "module",
"scripts": {
"start": "node build/src/index.js",
"build": "npm run test && tsc -p tsconfig.json",
"buildstart": "npm run build && npm run start",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/prompt-sync": "^4.2.0",
"jest": "^29.6.3",
"simple-git-hooks": "^2.9.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"dotenv": "^16.3.1",
"node-fetch": "^3.3.2",
"prompt-sync": "^4.2.0",
"ytdl-core": "^4.11.5"
},
"simple-git-hooks": {
"pre-push": "npm run test"
}
}