-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "mpc-js",
"version": "1.3.2",
"description": "A javascript client library for the Music Player Daemon - node package",
"files": [
"lib",
"README.md"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "rm -Rf lib && tsc",
"reinstall": "rimraf node_modules package-lock.json && npm install",
"clean": "rimraf out vscode-test-explorer-*.vsix",
"build": "tsc",
"watch": "tsc -w",
"rebuild": "npm run clean && npm run build"
},
"keywords": [
"mpd"
],
"author": "Holger Benl <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hbenl/mpc-js-node.git"
},
"homepage": "https://github.com/hbenl/mpc-js-node",
"bugs": {
"url": "https://github.com/hbenl/mpc-js-node/issues"
},
"dependencies": {
"@types/node": "^12.20.13",
"mpc-js-core": "^1.3.2"
},
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "~4.2.4"
}
}