-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
45
46
47
48
{
"name": "chosic-downloader",
"version": "1.0.0",
"description": "Download any music from chosic.com",
"main": "dist/index.js",
"scripts": {
"test": "npx jest",
"postinstall": "npx playwright install",
"compile": "npx tsc -p tsconfig.json",
"compile:watch": "npx tsc -p tsconfig.json --watch",
"prettier": "npx prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"build": "npm run prettier && npm run compile",
"prestart": "npm run build",
"start": "node out/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Makepad-fr/chosic-downloader.git"
},
"keywords": [
"TypeScript",
"WebScraper",
"Playwright",
"Downloader",
"NodeJS",
"npm",
"music",
"downloader"
],
"author": "Makepad Developers <dev@makepad.fr>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Makepad-fr/chosic-downloader/issues"
},
"homepage": "https://github.com/Makepad-fr/chosic-downloader#readme",
"devDependencies": {
"@types/jest": "^29.5.5",
"babel-plugin-filter-imports": "^4.0.0",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"playwright": "^1.38.1"
}
}