@9c5s/node-tcnet 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +7 -0
- package/README.MD +76 -0
- package/dist/index.d.mts +325 -0
- package/dist/index.d.ts +325 -0
- package/dist/index.js +764 -0
- package/dist/index.mjs +764 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@9c5s/node-tcnet",
|
|
3
|
+
"version": "0.5.1",
|
|
4
|
+
"description": "Implements the TC-Supply TCNet protocol used by ShowKontrol and ProDJLink Bridge app from Pioneer",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"import": "./dist/index.mjs",
|
|
9
|
+
"require": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"./package.json": "./package.json"
|
|
12
|
+
},
|
|
13
|
+
"main": "dist/index.js",
|
|
14
|
+
"types": "dist/index.d.ts",
|
|
15
|
+
"homepage": "https://github.com/9c5s/node-tcnet#readme",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": "github:9c5s/node-tcnet",
|
|
18
|
+
"files": [
|
|
19
|
+
"/dist"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"example": "node --import tsx examples",
|
|
23
|
+
"build": "rm -rf dist && tsup && check-export-map",
|
|
24
|
+
"watch": "tsc -b -w",
|
|
25
|
+
"changeset": "changeset",
|
|
26
|
+
"clean": "tsc -b --clean",
|
|
27
|
+
"lint": "eslint . --ext ts --ignore-pattern '**/*.d.ts'",
|
|
28
|
+
"format:fix": "prettier --write \"./**/*.{ts,html,css,json,jsonc}\"",
|
|
29
|
+
"format:check": "prettier --check \"./**/*.{ts,html,css,json,jsonc}\"",
|
|
30
|
+
"format-pre-commit": "pretty-quick --staged --pattern '*/**/*.{ts,html,css,json,jsonc}'",
|
|
31
|
+
"mdlint": "markdownlint-cli2 \"docs/wiki/**/*.md\" \"*.{md,MD}\" \"!CHANGELOG.md\"",
|
|
32
|
+
"mdlint:fix": "markdownlint-cli2 --fix \"docs/wiki/**/*.md\" \"*.{md,MD}\" \"!CHANGELOG.md\"",
|
|
33
|
+
"textlint": "textlint \"docs/wiki/**/*.md\" \"README.MD\"",
|
|
34
|
+
"textlint:fix": "textlint --fix \"docs/wiki/**/*.md\" \"README.MD\""
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@changesets/cli": "^2.27.9",
|
|
38
|
+
"@commitlint/cli": "^20.5.0",
|
|
39
|
+
"@commitlint/config-conventional": "^20.5.0",
|
|
40
|
+
"@types/node": "^15.12.5",
|
|
41
|
+
"@typescript-eslint/eslint-plugin": "^4.22.1",
|
|
42
|
+
"@typescript-eslint/parser": "^4.22.1",
|
|
43
|
+
"check-export-map": "^1.3.1",
|
|
44
|
+
"eslint": "^7.30.0",
|
|
45
|
+
"markdownlint-cli2": "^0.21.0",
|
|
46
|
+
"prettier": "^2.2.1",
|
|
47
|
+
"pretty-quick": "^3.1.0",
|
|
48
|
+
"textlint": "^15.5.2",
|
|
49
|
+
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "^1.0.1",
|
|
50
|
+
"textlint-rule-preset-ja-technical-writing": "^12.0.2",
|
|
51
|
+
"tsup": "^8.3.5",
|
|
52
|
+
"tsx": "^4.19.2",
|
|
53
|
+
"typescript": "^4.2.4"
|
|
54
|
+
},
|
|
55
|
+
"publishConfig": {
|
|
56
|
+
"access": "public",
|
|
57
|
+
"provenance": true
|
|
58
|
+
}
|
|
59
|
+
}
|