-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.6 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
{
"name": "lastfm-nodejs-client",
"version": "1.7.0",
"description": "A NodeJS wrapper client for LastFm API. Fetching public data by username using the LastFm public API",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/@types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/@types/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"prepare": "npm run build",
"prepublish": "npm test && npm run lint && npm run prepare",
"clean": "rm -rf dist",
"release": "npm run prepublish && npm publish --access public && npx jsr publish",
"test": "pnpm exec playwright test --reporter=list"
},
"keywords": [
"client",
"commonjs",
"esm",
"lastFm",
"node",
"nodejs",
"typescript"
],
"author": "Mannuel Ferreira",
"maintainers": [
"Mannuel Ferreira"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "1.58.2",
"@types/node": "25.5.0",
"eslint": "10.1.0",
"typescript": "5.9.3",
"typescript-eslint": "8.57.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mannuelf/lastfm-nodejs-client.git"
},
"bugs": {
"url": "https://github.com/mannuelf/lastfm-nodejs-client/issues"
},
"homepage": "https://github.com/mannuelf/lastfm-nodejs-client#readme",
"type": "module",
"engines": {
"node": ">=20.0.0"
}
}