-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
40 lines (40 loc) · 1.35 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
{
"name": "@statsfm/spotify.js",
"version": "1.13.0",
"description": "Node wrapper for Spotify, written in TS.",
"main": "dist/index.js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": "https://github.com/statsfm/spotify.js",
"author": "stats.fm Developers (originally made by Sting Alleman)",
"license": "GPL-3.0",
"scripts": {
"dev": "rm -rf dist && tsc --watch",
"build": "rm -rf dist && tsc",
"upload": "yarn lint && yarn build && yarn npm publish && git push && git push --tags && gh release create",
"lint": "eslint \"src/**/*.ts\"",
"lint:tsc": "tsc --noEmit -p .",
"docs": "typedoc --excludePrivate --excludeProtected --name \"spotify.js documentation\" --out docs src/index.ts"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-jsdoc": "^48.5.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^54.0.0",
"prettier": "^3.3.2",
"typedoc": "^0.26.3",
"typescript": "^5.5.3"
},
"dependencies": {
"axios": "^1.7.2",
"axios-better-stacktrace": "^2.1.6"
},
"packageManager": "[email protected]"
}