-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 835 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
{
"name": "@jjdenhertog/tidal-music-search",
"version": "1.0.4",
"description": "Library to find tracks in Tidal",
"keywords": [
"tidal",
"music",
"search"
],
"homepage": "https://github.com/jjdenhertog/tidal-music-search",
"license": "MIT",
"scripts": {
"deploy": "tsc && npm version patch --no-git-tag-version && cp package.json ./dist && cp README.md ./dist && cd dist && npm publish --access public",
"build": "tsc"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@jjdenhertog/music-search": "^1.0.7",
"axios": "^1.7.7",
"qs": "^6.13.0"
},
"devDependencies": {
"@types/node": "^20.3.0",
"@types/qs": "^6.9.14",
"typescript": ">=4.7.4"
}
}