-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "harmonicli",
"version": "0.0.1",
"description": "A CLI for browsing and streaming music.",
"main": "bin/index.js",
"bin": {
"harmonicli": "bin/index.js"
},
"scripts": {
"link": "sudo npm link",
"dev": "yarn ts-node src/index.tsx",
"dev:start": "yarn build && ./bin/index.js old town road --no-headless --debug",
"build": "yarn tsc && chmod u+x ./bin/index.js",
"install:local": "yarn build && sudo npm i -g .",
"test": "jest"
},
"license": "MIT",
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@types/puppeteer": "^5.4.7",
"ink-testing-library": "^2.1.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@types/react": "^18.0.25",
"commander": "^9.4.1",
"ink": "^3.2.0",
"ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0",
"ink-select-input": "^4.2.1",
"ink-spinner": "^4.0.3",
"ink-text-input": "^4.0.3",
"ink-use-stdout-dimensions": "^1.0.5",
"puppeteer": "^19.2.2",
"puppeteer-core": "^19.2.2",
"puppeteer-extra": "^3.3.4",
"puppeteer-extra-plugin-adblocker": "^2.13.5",
"react": "^18.2.0",
"react-reconciler": "^0.29.0"
}
}