-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.41 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
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@soundify/web-api",
"version": "1.1.5",
"description": "🎧 Spotify Web API client for js/ts runtime environments",
"type": "module",
"main": "dist/mod.cjs",
"module": "dist/mod.js",
"types": "dist/mod.d.ts",
"license": "MIT",
"sideEffects": false,
"files": [
"dist/",
"LICENSE",
"package.json",
"README.md"
],
"exports": {
".": {
"import": "./dist/mod.js",
"require": "./dist/mod.cjs",
"types": "./dist/mod.d.ts"
},
"./pagination": {
"import": "./dist/pagination.js",
"require": "./dist/pagination.cjs",
"types": "./dist/pagination.d.ts"
},
"./auth": {
"import": "./dist/auth.js",
"require": "./dist/auth.cjs",
"types": "./dist/auth.d.ts"
}
},
"scripts": {
"build": "tsup ./mod.ts ./pagination.ts ./auth.ts --format esm,cjs --minify --dts --out-dir dist && rm ./dist/*.d.cts"
},
"devDependencies": {
"all-contributors-cli": "6.26.1",
"typescript": "5.5.3",
"tsup": "8.1.0"
},
"author": {
"name": "Artem Melnyk",
"url": "https://github.com/MellKam"
},
"repository": "github:MellKam/soundify",
"bugs": {
"url": "https://github.com/MellKam/soundify/issues"
},
"readme": "https://github.com/MellKam/soundify#readme",
"publishConfig": {
"access": "public"
},
"keywords": [
"spotify",
"web",
"api",
"music",
"sdk",
"soundify"
],
"packageManager": "[email protected]+sha256.dbdf5961c32909fb030595a9daa1dae720162e658609a8f92f2fa99835510ca5"
}