-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.12 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
{
"name": "spotify-mini",
"version": "3.0.0",
"description": "Fetch your currently playing, recent and top Spotify tracks in Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"license": "MIT",
"author": {
"email": "rocktimthedev@gmail.com",
"name": "Rocktim Saikia",
"url": "https://rocktim.dev"
},
"repository": "rocktimsaikia/spotify-mini",
"scripts": {
"build": "rm -rf dist && tsup src/index.ts --dts --format esm,cjs",
"test": "pnpm build && ava",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^17.0.23",
"ava": "^4.2.0",
"dotenv": "^16.3.1",
"husky": "^7.0.4",
"lint-staged": ">=10",
"prettier": "^2.6.2",
"spotify-types": "^1.0.7",
"ts-node": "^10.7.0",
"tsup": "^5.12.4",
"tsx": "^4.7.0",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=18"
},
"keywords": [
"spotify",
"spotify-api",
"spotify-typescript",
"spotify-current-song",
"spotify-last-played-song"
],
"lint-staged": {
"*.{js,ts,md}": "prettier --write"
}
}