forked from pelauimagineering/apple-music-token-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 913 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
{
"name": "apple-music-token-generator",
"version": "1.2.0",
"description": "Some steps that help getting started creating the Apple Music JWT tokens needed to use MusicKit",
"main": "create_token.js",
"scripts": {
"test": "npm run generate -- --test",
"generate": "node create_token.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pelauimagineering/apple-music-token-generator.git"
},
"keywords": [
"Apple",
"Music",
"API",
"key",
"JWT",
"generator"
],
"author": "pelauimagineering",
"license": "MIT",
"bugs": {
"url": "https://github.com/pelauimagineering/apple-music-token-generator/issues"
},
"homepage": "https://github.com/pelauimagineering/apple-music-token-generator#readme",
"dependencies": {
"dotenv": "^10.0.0",
"inquirer": "^8.1.1",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.1"
}
}