-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 KB
/
package.json
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": "vincci",
"version": "1.1.4",
"description": "Vincci is a NodeJs [TypeScript] library designed to allow users to display fancy tables in the terminal, with advanced row and column formatting, color support checks, and more.",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"test": "jest",
"test-watch": "jest --watchAll",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint .",
"format": "prettier --write .",
"lint:fix": "eslint . --fix"
},
"author": "mohammadreza hayati",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohammadrezahayati/vincci/issues"
},
"keywords": [
"table",
"debugger",
"node_table",
"helper",
"vincci"
],
"repository": "git+https://github.com/mohammadrezahayati/vincci.git",
"homepage": "https://github.com/mohammadrezahayati/vincci#readme",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.8.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0"
},
"dependencies": {
"chalk": "^5.3.0",
"ansi-styles": "^6.2.1",
"chalk-animation": "^2.0.3",
"color-convert": "^2.0.1",
"supports-color": "^9.4.0",
"gradient-string": "^2.0.2"
}
}