This repository was archived by the owner on Dec 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.95 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.95 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
74
75
76
77
78
79
80
{
"name": "node-tidal",
"type": "module",
"version": "1.2.0",
"description": "Unofficial TIDAL API wrapper.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"clean": "rimraf -rf ./dist && rimraf -rf nodes_modules",
"build": "npm run clean && tsup",
"prepack": "npm run build",
"test": "mocha",
"lint": "eslint --ignore-path .gitignore",
"prettier": "prettier --ignore-path .gitignore --write .",
"docs": "typedoc --entryPointStrategy expand ./src --readme none --plugin typedoc-plugin-markdown --out docs "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mawco/node-tidal.git"
},
"keywords": [
"Tidal",
"Music"
],
"author": "Marco (https://github.com/Mawco)",
"contributors": [
"glazk0 (https://github.com/glazk0)",
"delight (https://github.com/delight)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Mawco/node-tidal/issues"
},
"homepage": "https://github.com/Mawco/node-tidal#readme",
"dependencies": {
"axios": "^1.1.3"
},
"devDependencies": {
"@glazk0/prettier-config": "^1.0.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"chai": "^4.3.6",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tsup": "^6.3.0",
"typedoc": "^0.23.17",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.8.4"
},
"tsup": {
"entry": [
"src/"
],
"format": [
"cjs",
"esm"
],
"splitting": false,
"sourcemap": false,
"clean": true,
"dts": true
}
}