-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 1.08 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
{
"name": "node-tcnet",
"version": "0.1.6",
"description": "Implements the TC-Supply TCNet protocol used by ShowKontrol and ProDJLink Bridge app from Pioneer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/chdxD1/node-tcnet#readme",
"license": "MIT",
"repository": "github:chdxD1/node-tcnet",
"files": [
"/dist"
],
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
"clean": "tsc -b --clean",
"lint": "eslint . --ext ts --ignore-pattern '**/*.d.ts'",
"format": "prettier --write \"./**/*.{ts,html,css,json}\"",
"format-pre-commit": "pretty-quick --staged --pattern '*/**/*.{ts,html,css,json}'"
},
"devDependencies": {
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.30.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"typescript": "^4.2.4"
},
"dependencies": {
"broadcast-address": "^1.0.2"
}
}