-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.8 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@shadownine/foxify",
"version": "0.1.5",
"description": "A modern TypeScript client for the Spotify Web API.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ShadowNineX/foxify.git"
},
"bugs": {
"url": "https://github.com/ShadowNineX/foxify/issues"
},
"homepage": "https://github.com/ShadowNineX/foxify#readme",
"sideEffects": false,
"packageManager": "bun@1.3.14",
"engines": {
"node": ">=18.17"
},
"keywords": [
"spotify",
"spotify-web-api",
"web-api",
"oauth",
"oauth2",
"pkce",
"typescript",
"fetch",
"music"
],
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist",
"examples/*.ts",
"examples/README.md",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"example:client-credentials-search": "bun --env-file=examples/.env run examples/client-credentials-search.ts",
"example:oauth-login": "bun --env-file=examples/.env run examples/oauth-login.ts",
"example:user-profile-playlists": "bun --env-file=examples/.env run examples/user-profile-playlists.ts",
"prepack": "bun run build",
"prepublishOnly": "bun run typecheck && bun run test",
"pack:dry": "npm pack --dry-run",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest",
"tsdown": "^0.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"dependencies": {
"oauth4webapi": "^3.8.6",
"ofetch": "^1.5.1"
}
}