-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "loophony",
"version": "0.0.0",
"description": "A Bandcamp desktop client",
"main": "main.js",
"scripts": {
"start": "npm run build:js && electron ./dist/main.js",
"build:js": "rollup -c rollup.config.js",
"watch:js": "rollup -c rollup.config.js --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixeldesu/loophony.git"
},
"keywords": [
"bandcamp",
"electron",
"music",
"player"
],
"author": "Andreas Nedbal <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/pixeldesu/loophony/issues"
},
"homepage": "https://github.com/pixeldesu/loophony#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-typescript": "^8.1.0",
"@vue/compiler-sfc": "^3.0.5",
"postcss": "^8.2.2",
"rollup": "^2.35.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-generate-html-template": "^1.7.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-vue": "^6.0.0"
},
"dependencies": {
"electron": "^11.1.1",
"tailwindcss": "^2.0.2",
"tslib": "^2.0.3",
"typescript": "^4.1.3",
"vue": "^3.0.5",
"vue-router": "^4.0.2"
}
}