generated from ChaseIngebritson/Cider-Plugin-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 982 Bytes
/
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
{
"name": "music-recommendations",
"version": "1.1.1",
"description": "A Cider Music plugin for providing recommendations based on a given artist in a fast and easy to read format.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c --environment NODE_ENV:production",
"start": "rollup -c -w --environment NODE_ENV:development",
"deploy": "yarn build && gh-pages -b main -d dist"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"electron": "^17.0.1",
"gh-pages": "^3.2.3",
"rollup": "^2.67.3",
"rollup-plugin-copy": "^3.4.0"
},
"dependencies": {
"@ssthouse/vue-tree-chart": "^0.6.5",
"dotenv": "^16.0.0",
"vue": "^2.6.14"
}
}