-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
76 lines (76 loc) · 2.11 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "cdgplayer",
"version": "0.1.17",
"description": "A browser based HTML5/JS karaoke 'Player', that takes a zip file containing an mp3 and cdg file, allowing the user to render and play directly in the browser.",
"main": "dist/cdgplayer.js",
"module": "dist/cdgplayer.js",
"keywords": [
"cdg",
"cd+g",
"karaoke"
],
"repository": {
"type": "git",
"url": "https://github.com/cutterbl/CDGPlayer.git"
},
"author": {
"name": "Stephen G Blades, Jr (AKA 'Cutter')",
"url": "http://cutterscrossing.com"
},
"license": "GPL-3.0-or-later",
"files": [
"dist/**/*",
"index.html",
"index.js",
"server.js",
"CDGPlayer.svg"
],
"scripts": {
"build": "rollup -c ./configs/rollup.config.mjs",
"watch": "rollup -c ./configs/rollup.config.mjs --watch",
"release": "standard-version",
"start": "node ./scripts/server.js"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/eslint-parser": "7.19.1",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.20.2",
"@commitlint/cli": "17.4.0",
"@commitlint/config-conventional": "17.4.0",
"@rollup/plugin-babel": "6.0.3",
"@rollup/plugin-commonjs": "24.0.0",
"@rollup/plugin-eslint": "9.0.1",
"@rollup/plugin-html": "1.0.1",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-terser": "0.2.1",
"autoprefixer": "10.4.13",
"babel-eslint": "10.1.0",
"connect": "3.7.0",
"eslint": "8.31.0",
"localip": "1.0.0",
"open": "8.4.0",
"postcss": "8.4.20",
"postcss-assets": "6.0.0",
"prettier": "2.8.1",
"regenerator-runtime": "0.13.11",
"rollup": "3.9.1",
"rollup-plugin-cleanup": "3.2.1",
"rollup-plugin-clear": "2.0.7",
"rollup-plugin-embed-css": "1.0.25",
"rollup-plugin-html": "0.2.1",
"rollup-plugin-postcss": "4.0.2",
"sass": "1.57.1",
"serve-static": "1.15.0",
"soundtouchjs": "0.1.30",
"standard-version": "9.5.0"
},
"dependencies": {
"jsmediatags": "3.9.7",
"jszip": "3.10.1",
"jszip-utils": "0.1.0"
},
"resolutions": {
"tar": ">=4.4.2"
}
}