-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 846 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
34
35
36
37
38
39
40
41
42
{
"name": "spotifly",
"version": "0.1.1",
"description": "Spotify library in typescript without using the Spotify Web API.",
"main": "dist/index.js",
"type": "module",
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc -p tsconfig.build.json"
},
"files": [
"dist",
"LICENSE",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tr1ckydev/spotifly.git"
},
"keywords": [
"api",
"music",
"spotify",
"spotifly",
"spotify-api",
"spotify-web-api"
],
"author": "tr1ckydev",
"license": "MIT",
"bugs": {
"url": "https://github.com/tr1ckydev/spotifly/issues"
},
"homepage": "https://github.com/tr1ckydev/spotifly#readme",
"engines": {
"node": ">=17.5.0"
},
"devDependencies": {
"bun-types": "^0.6.12"
}
}