-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.33 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@bolajiolajide/now-playing",
"version": "1.0.0",
"description": "A simple package to get the current playing song from a streaming platform.",
"homepage": "https://github.com/bolajiolajide/now-playing",
"repository": {
"type": "git",
"url": "git+https://github.com/bolajiolajide/now-playing.git"
},
"bugs": {
"url": "https://github.com/bolajiolajide/now-playing/issues"
},
"main": "dist/now-playing.mjs",
"module": "dist/now-playing.mjs",
"types": "dist/now-playing.d.ts",
"type": "module",
"scripts": {
"build": "npx rimraf dist && vite build",
"test": "vitest",
"format": "prettier . --write"
},
"exports": {
"types": "./dist/now-playing.d.ts",
"default": "./dist/now-playing.mjs"
},
"files": [
"dist/now-playing.mjs",
"dist/now-playing.d.ts"
],
"keywords": [
"spotify",
"now-playing",
"in-memory"
],
"author": "",
"license": "MIT",
"dependencies": {
"node-fetch": "2.6.7",
"zod": "3.23.8"
},
"devDependencies": {
"@rollup/plugin-typescript": "11.1.6",
"@types/node": "18.19.39",
"@types/node-fetch": "2.6.11",
"msw": "2.3.1",
"prettier": "3.3.2",
"tslib": "2.6.3",
"typescript": "5.4.5",
"vite": "^5.3.3",
"vite-plugin-dts": "^3.9.1",
"vitest": "1.6.0"
},
"engines": {
"node": ">=18"
}
}