-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.09 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
49
50
51
{
"name": "@spotifly/auth-token",
"version": "3.0.1",
"description": "A simple utility for retrieving Spotify authentication and refresh tokens. Supports programmatic and CLI use",
"keywords": [
"spotify",
"auth",
"token",
"refresh token",
"authorization",
"authentication",
"cli",
"typescript"
],
"homepage": "https://spotifly.nougat.dev/docs/packages/auth-token",
"repository": {
"type": "git",
"url": "https://github.com/eegli/spotifly"
},
"license": "MIT",
"author": {
"name": "Eric Egli",
"email": "[email protected]"
},
"main": "dist/spotifly-auth-token.cjs.js",
"module": "dist/spotifly-auth-token.esm.js",
"files": [
"dist",
"cli"
],
"dependencies": {
"@eegli/tinyparse": "^0.19.1",
"@spotifly/utils": "workspace:^"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node-fetch": "^2.6.10"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"directory": "_release/package"
},
"preconstruct": {
"entrypoints": [
"index.ts",
"cli.ts"
]
}
}