-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.94 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.94 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
{
"name": "nprocmon",
"version": "1.1.1",
"license": "MIT",
"bin": {
"nprocmon": "dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "esbuild src/cli.tsx --bundle --platform=node --packages=external --format=esm --outfile=dist/cli.js",
"dev": "esbuild src/cli.tsx --bundle --sourcemap=external --platform=node --packages=external --format=esm --outfile=dist/cli.js --watch",
"postinstall": "patch-package",
"prepare": "npm run build"
},
"files": [
"dist"
],
"dependencies": {
"@lydell/node-pty": "^1.0.1",
"@reduxjs/toolkit": "^2.0.1",
"@types/readline-sync": "^1.4.8",
"@xterm/addon-serialize": "^0.12.0-beta.1",
"meow": "^13.2.0",
"open": "^10.1.0",
"patch-package": "^8.0.0",
"ps-node": "^0.1.6",
"react": "^18.2.0",
"react-curse": "^1.0.13",
"react-redux": "^9.1.0",
"readline-sync": "^1.4.10",
"strip-ansi": "^7.1.0",
"tree-kill": "^1.2.2",
"xterm-addon-serialize": "^0.11.0",
"xterm-headless": "^5.3.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/react": "^18.0.32",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"chalk": "^5.2.0",
"esbuild": "^0.19.12",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-react": "^0.27.0",
"eslint-config-xo-typescript": "^1.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^50.0.1",
"prettier": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"root": true,
"extends": [
"xo",
"xo-react",
"xo-typescript",
"plugin:unicorn/recommended",
"plugin:prettier/recommended"
],
"rules": {
"no-bitwise": "off",
"no-control-regex": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-empty-function": "off",
"unicorn/escape-case": "off",
"unicorn/no-process-exit": "off",
"unicorn/prevent-abbreviations": "off"
}
},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"semi": false,
"singleQuote": true,
"endOfLine": "lf",
"overrides": [
{
"files": "*.yaml",
"options": {
"tabWidth": 2
}
}
]
}
}