-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.11 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
78
79
80
81
82
83
{
"name": "yayfetch",
"version": "2.1.0",
"description": "A Multi-platform screenfetch/neofetch",
"main": "./dist/yayfetch.js",
"module": "./dist/yayfetch.js",
"type": "module",
"author": "Szymon Wiszczuk",
"license": "MIT",
"keywords": [
"screenfetch",
"neofetch",
"environment",
"info",
"system",
"sysinf",
"systeminformation"
],
"files": [
"dist",
"package.json"
],
"publishConfig": {
"access": "public",
"directory": "dist"
},
"homepage": "https://github.com/golota60/yayfetch#readme",
"repository": {
"type": "git",
"url": "https://github.com/golota60/yayfetch"
},
"scripts": {
"build": "rimraf dist && tsup",
"start": "pnpm build && node ./dist/yayfetch.js",
"clean": "rm -rf node_modules && rm -rf ./dist",
"lint": "eslint --ext '.js,.ts' ./src --fix",
"test": "NODE_OPTIONS=--experimental-vm-modules jest tests",
"prepare": "husky install",
"prepublishOnly": "git push --tags && pnpm install && pnpm build",
"release": "standard-version"
},
"hooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*": "pnpm test"
},
"bin": {
"yayfetch": "./dist/yayfetch.js"
},
"dependencies": {
"chalk": "^5.3.0",
"inquirer": "^9.2.12",
"log-update": "^5.0.1",
"systeminformation": "^5.21.20",
"terminal-image": "^2.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@callstack/eslint-config": "^14.0.0",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.5",
"@types/node": "^20.7.0",
"@types/yargs": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-require-extensions": "^0.1.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"standard-version": "^9.3.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^8.0.1",
"typescript": "^5.2.2"
}
}