forked from s0/node-tcnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.77 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@9c5s/node-tcnet",
"version": "0.9.0",
"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/9c5s/node-tcnet#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/9c5s/node-tcnet.git"
},
"files": [
"/dist"
],
"scripts": {
"build": "rm -rf dist && tsup && check-export-map",
"changeset": "changeset",
"clean": "tsc -b --clean",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"example": "node --import tsx examples",
"format:check": "prettier --check \"./**/*.{ts,js,mjs,json,jsonc}\" \"!package-lock.json\"",
"lint:md": "markdownlint-cli2 \"docs/wiki/**/*.md\" \"*.md\" \"!CHANGELOG.md\"",
"lint:md:fix": "markdownlint-cli2 --fix \"docs/wiki/**/*.md\" \"*.md\" \"!CHANGELOG.md\"",
"lint:text": "textlint \"docs/wiki/**/*.md\" \"README.md\"",
"lint:text:fix": "textlint --fix \"docs/wiki/**/*.md\" \"README.md\"",
"lint:ts": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsgo --noEmit",
"watch": "tsc -b -w"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@changesets/parse": "^0.4.3",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"@typescript/native-preview": "^7.0.0-dev.20260328.1",
"check-export-map": "^1.3.1",
"eslint": "^10.1.0",
"eslint-plugin-jsdoc": "^62.8.1",
"markdownlint-cli2": "^0.21.0",
"prettier": "^3.8.1",
"textlint": "^15.5.2",
"textlint-rule-no-mixed-zenkaku-and-hankaku-alphabet": "^1.0.1",
"textlint-rule-preset-ja-technical-writing": "^12.0.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typedoc": "^0.28.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vitest": "^4.1.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
0
],
"scope-empty": [
2,
"always"
]
}
},
"markdownlint-cli2": {
"config": {
"line-length": false,
"no-duplicate-heading": false,
"no-inline-html": false,
"first-line-heading": false,
"table-column-style": false
}
},
"textlint": {
"rules": {
"preset-ja-technical-writing": {
"sentence-length": false,
"max-comma": false,
"no-exclamation-question-mark": false,
"no-mix-dearu-desumasu": {
"preferInBody": "である"
}
},
"no-mixed-zenkaku-and-hankaku-alphabet": true
}
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"cjs",
"esm"
],
"splitting": true,
"dts": true
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"useTabs": false,
"endOfLine": "auto"
}
}