-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.43 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.43 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "odesli.js",
"version": "1.3.9",
"description": "Node.js Client to query odesli.co (song.link/album.link) API",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.js"
},
"./rate-limiter": {
"import": "./lib/rate-limiter.js",
"require": "./lib/rate-limiter.js"
},
"./metrics": {
"import": "./lib/metrics.js",
"require": "./lib/metrics.js"
},
"./plugin-system": {
"import": "./lib/plugin-system.js",
"require": "./lib/plugin-system.js"
}
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"docs": "jsdoc lib/index.js -d docs",
"audit": "npm audit",
"audit:fix": "npm audit fix",
"security": "npm audit && snyk test",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MattrAus/odesli.js.git"
},
"keywords": [
"odesli.co",
"odesli",
"song.link",
"songlink",
"album.link",
"albumlink",
"music",
"streaming",
"api",
"spotify",
"apple-music",
"youtube-music"
],
"author": "Mattr <me@mtr.gg>",
"license": "ISC",
"bugs": {
"url": "https://github.com/MattrAus/odesli.js/issues"
},
"dependencies": {
"@types/node": "^24.6.2",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/jest": "^30.0.0",
"@types/prettier": "^2.7.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^6.6.0",
"jest": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"jsdoc": "^4.0.4",
"prettier": "^3.6.2",
"snyk": "^1.1299.1",
"ts-jest": "^29.4.4",
"typescript": "^5.9.3"
},
"overrides": {
"js-yaml": "^4.1.1"
},
"homepage": "https://github.com/MattrAus/odesli.js#readme"
}