forked from chdxD1/node-tcnet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.69 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.69 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
{
"name": "@s0/node-tcnet",
"version": "0.5.1",
"description": "Implements the TC-Supply TCNet protocol used by ShowKontrol and ProDJLink Bridge app from Pioneer",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/chdxD1/node-tcnet#readme",
"license": "MIT",
"repository": "github:s0/node-tcnet",
"files": [
"/dist"
],
"scripts": {
"example": "node --import tsx examples",
"build": "rm -rf dist && tsup && check-export-map",
"watch": "tsc -b -w",
"changeset": "changeset",
"clean": "tsc -b --clean",
"lint": "eslint . --ext ts --ignore-pattern '**/*.d.ts'",
"format:fix": "prettier --write \"./**/*.{ts,html,css,json}\"",
"format:check": "prettier --check \"./**/*.{ts,html,css,json}\"",
"format-pre-commit": "pretty-quick --staged --pattern '*/**/*.{ts,html,css,json}'"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"check-export-map": "^1.3.1",
"eslint": "^7.30.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^4.2.4"
},
"dependencies": {
"broadcast-address": "^1.0.2"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}