-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "@splicemood/react-music-player",
"homepage": "https://splicemood.github.io/react-music-player/",
"description": "The music player that sync all settings between multiple tabs on a single client-side browser session",
"version": "1.1.0",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "dist/lib/index.d.ts",
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/splicemood/react-music-player.git"
},
"files": [
"dist"
],
"keywords": [
"react",
"synchronization",
"music-player",
"playlist-manager",
"react-hook",
"react-provider",
"multitab"
],
"license": "MIT",
"scripts": {
"deploy": "sh ./scripts/build-package-publish-demo.sh",
"build": "NODE_ENV=production rm -Rf dist && tsc && bun build.ts && bun run build:declaration",
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"postbuild": "rm -Rf tsconfig.types.tsbuildinfo",
"publish": "npm publish --access public",
"prettier": "prettier --check \"src/**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"src/**/*.{ts,tsx}\""
},
"peerDependencies": {
"react": "^18.x || ^19.x",
"@mantine/hooks": "^7.14.3"
},
"dependencies": {
"music-metadata": "^10.6.4"
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.4.2",
"typescript": "^5.7.2"
}
}