-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "@yuuza/mcloud",
"version": "1.0.14",
"description": "The MusicCloud website.",
"publishConfig": {
"access": "public"
},
"main": "dist/main.js",
"typings": "src/main.ts",
"scripts": {
"build": "concurrently 'npm:build:*'",
"build:main": "rollup -c --id=main",
"build:bundle": "rollup -c --id=bundle",
"build:sw": "rollup -c --id=sw",
"build:electron": "rollup -c --id=electron",
"build:overlay": "rollup -c --id=overlay",
"watch": "rollup -c -w",
"prepack": "npm run build",
"electron": "cd dist && electron electron.main.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lideming/MusicCloud.git"
},
"keywords": [
"musiccloud"
],
"author": "lideming",
"license": "MIT",
"bugs": {
"url": "https://github.com/lideming/MusicCloud/issues"
},
"homepage": "https://github.com/lideming/MusicCloud",
"files": [
"dist/",
"src/"
],
"dependencies": {
"@yuuza/webfx": "^1.10.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@rollup/plugin-typescript": "^9.0.2",
"concurrently": "^7.6.0",
"electron": "^22.3.1",
"rollup": "^3.17.2",
"rollup-plugin-copy": "^3.4.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
}
}