-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 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
{
"name": "@gamestwolife/melodify",
"version": "1.1.3",
"description": "A stable, updated and powerful music library with support for Spotify and YouTube.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"keywords": [],
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
},
"author": "GamesTwoLife",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GamesTwoLife/melodify.git"
},
"bugs": {
"url": "https://github.com/GamesTwoLife/melodify/issues"
},
"homepage": "https://github.com/GamesTwoLife/melodify#readme",
"scripts": {
"build": "npm run build:ts && npm run build:docs",
"build:ts": "tsup --config tsup-config.json",
"build:docs": "typedoc --theme default --readme TypeDoc.md --name Melodify --out docs/ --entryPointStrategy expand src/.",
"prepare": "npm run build:ts"
},
"devDependencies": {
"@types/node": "^22.13.4",
"tsup": "^8.3.6",
"typedoc": "^0.27.7",
"typescript": "^5.7.3"
},
"dependencies": {
"axios": "^1.7.9"
}
}