-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 924 Bytes
/
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
{
"name": "lastfm-ts-api",
"version": "2.1.0",
"description": "An API client for the Last.FM API written in TypeScript",
"keywords": [
"Last.FM",
"Last.FM API",
"Last.FM API Client",
"Last.FM TypeScript API"
],
"homepage": "https://atanas.info/portfolio/open-source/lastfm-ts-api",
"bugs": {
"url": "https://github.com/scriptex/last-fm-ts-api/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Atanas Atanasov <[email protected]> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "github:scriptex/lastfm-ts-api"
},
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"demo": "node demo/index.js"
},
"dependencies": {},
"devDependencies": {
"@types/node": "22.10.5",
"dotenv": "16.4.7",
"tslib": "2.8.1",
"typescript": "5.7.2"
}
}