forked from alexanderwallin/osc-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.37 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
{
"name": "osc-debugger",
"version": "1.2.1",
"description": "A simple but charming OSC debugging tool for the terminal",
"engines": {
"node": ">=18.x"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"osc-debugger": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build",
"type-check": "tsc --noEmit"
},
"dependencies": {
"colors": "^1.4.0",
"inquirer": "^13.1.0",
"inquirer-command-prompt": "0.1.0",
"osc-min": "^2.1.2",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/colors": "^1.1.3",
"@types/inquirer": "^9.0.9",
"@types/node": "^25.0.3",
"@types/yargs": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexanderwallin/osc-debugger.git"
},
"keywords": [
"osc",
"debug",
"terminal",
"console",
"monitor"
],
"author": "Alexander Wallin <office@alexanderwallin.com> (http://alexanderwallin.com)",
"license": "The Unlicense",
"bugs": {
"url": "https://github.com/alexanderwallin/osc-debugger/issues"
},
"homepage": "https://github.com/alexanderwallin/osc-debugger#readme"
}