-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.83 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "term-kitty-img",
"version": "0.0.0",
"main": "_dist/cjs/index.js",
"module": "_dist/esm/index.js",
"types": "_dist/esm/index.d.ts",
"keywords": [
"terminal",
"kitty",
"image",
"node",
"typescript"
],
"description": "Show images in your kitty terminal",
"browser": {
"./_dist/cjs/index.js": "./_dist/cjs/index.js",
"./_dist/esm/index.js": "./_dist/esm/index.js"
},
"bin": {
"term-kitty-img": "./_dist/term-kitty-img"
},
"scripts": {
"build": "node ./_scripts/build.js",
"test": "jest",
"coverage": "jest --coverage",
"watch": "jest --watch",
"lint": "eslint src",
"husky": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/node-dir": "^0.0.34",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"commander": "^9.2.0",
"esbuild": "^0.14.11",
"eslint": "^8.6.0",
"eslint-plugin-react": "^7.29.3",
"express": "^4.17.2",
"fs-extra": "^10.0.0",
"glob-gitignore": "^1.0.14",
"husky": "^7.0.4",
"jest": "^27.5.1",
"json5": "^2.2.0",
"lint-staged": "^12.3.5",
"node-dir": "^0.1.17",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2",
"validate-npm-package-name": "^3.0.0",
"ws": "^8.4.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"files": [
"*"
],
"release": {
"branches": [
"main"
]
},
"dependencies": {
"jimp": "^0.16.1"
}
}