-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 849 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 849 Bytes
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
{
"name": "meting",
"version": "2.0.2",
"description": "Wow, such a beautiful html5 music player (with Meting API)",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/metowolf/MetingJS",
"repository": {
"url": "git+https://github.com/metowolf/MetingJS.git",
"type": "git"
},
"author": {
"name": "metowolf",
"email": "i@i-meto.com",
"url": "https://i-meto.com/"
},
"main": "dist",
"scripts": {
"lint": "eslint src",
"build": "rm -rf dist && mkdir dist && rollup -c",
"test": "npm run build",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"player",
"music",
"api",
"meting",
"html5"
],
"devDependencies": {
"@eslint/js": "^9.36.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.0",
"eslint": "^9.36.0",
"rollup": "^4.0.0"
}
}