-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.36 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.36 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "spotify-to-youtube",
"version": "1.0.4",
"description": "Converts Spotify playlists to YouTube playlists",
"main": "lib/js/src/main.js",
"scripts": {
"test": "npm run build && (webpack || webpack)",
"build": "npm run clean && bsb -make-world",
"watch": "npm run clean && bsb -make-world -w",
"clean": "rm -rf lib/ && bsb -clean-world && rm -rf html/js && rm -rf dist",
"webpack": "webpack -w",
"postinstall": "ppl link-file && electron-rebuild",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"windows-build-all": "npm run build && (webpack || webpack)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryb73/spotify-to-youtube.git"
},
"author": "Ryan Biwer",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryb73/spotify-to-youtube/issues"
},
"homepage": "https://github.com/ryb73/spotify-to-youtube#readme",
"devDependencies": {
"bs-fast-csv": "2.0.0",
"bs-google-apis-web": "1.0.0",
"bs-node": "github:ryb73/bs-node",
"bs-node-http-server": "1.0.0",
"bs-qs": "2.0.0",
"bs-spotify-web-api": "2.0.0",
"bs-stream-to-array": "2.0.0",
"bs-webapi": "0.13.6",
"copy-webpack-plugin": "5.0.2",
"electron": "4.1.1",
"electron-builder": "20.39.0",
"electron-rebuild": "1.8.4",
"electron-updater": "4.0.6",
"fast-csv": "2.4.1",
"font-awesome": "4.7.0",
"persistent-package-linker": "github:ryb73/persistent-package-linker",
"promise-monofill": "1.0.1",
"qs": "6.7.0",
"react": "16.8.5",
"react-dom": "16.8.5",
"reason-react": "0.6.0",
"spotify-web-api-node": "4.0.0",
"string-replace-loader": "2.1.1",
"webpack": "4.29.6"
},
"myreason": "*",
"dependencies": {
"bs-electron-updater": "1.0.3",
"electron-debug": "2.1.0",
"express": "4.16.4",
"http-server": "0.11.1",
"sqlite3": "*",
"stream-to-array": "github:ryb73/stream-to-array"
},
"peerDependencies": {
"bs-platform": "^2.0.0"
},
"build": {
"appId": "com.electron.spotifyToYoutube",
"productName": "Spotify to YouTube",
"directories": {
"buildResources": "lib/js/src"
},
"files": [
"lib/js/src/**/*",
"html/**/*"
],
"mac": {
"category": "public.app-category.utilities"
},
"win": {
"publish": "github",
"target": "portable"
}
}
}