-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (51 loc) · 1.76 KB
/
package.json
File metadata and controls
55 lines (51 loc) · 1.76 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
{
"name": "iobeats-player",
"version": "2.0.73",
"description": "IO Beats Player — Web3 music player (Web + Mobile bridge).",
"private": true,
"type": "module",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"update:changelog": "node ./scripts/update-changelog.mjs",
"release:notes": "cp -n RELEASE_NOTES_TEMPLATE.md RELEASE_NOTES_v$npm_config_tag.md || true",
"release:notes:new": "VERSION=$npm_config_tag ./scripts/mk-notes.sh",
"release:changelog": "TAG=$npm_config_tag node ./scripts/update-changelog.mjs",
"release:check-clean": "git diff-index --quiet HEAD -- || (echo '\\n❌ Uncommitted changes detected. Commit or stash before tagging.\\n' && exit 1)",
"release:tag": "npm run release:check-clean && git tag v$npm_config_tag && git push origin v$npm_config_tag",
"release:tag:rc": "npm run release:check-clean && git tag v$npm_config_tag-rc.$npm_config_rc && git push origin v$npm_config_tag-rc.$npm_config_rc",
"release:all": "npm run release:notes --tag=$npm_config_tag && npm run release:changelog --tag=$npm_config_tag && npm run release:tag --tag=$npm_config_tag"
},
"keywords": [
"web3",
"music",
"nft",
"player",
"iobeats"
],
"author": "IO Beats",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iobeatss/iobeats-player.git"
},
"homepage": "https://open.iobeats.com",
"bugs": {
"url": "https://github.com/iobeatss/iobeats-player/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"next": "^15.5.4",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"eslint": "^9.36.0",
"eslint-config-next": "^15.5.4"
}
}