-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.61 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.61 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
{
"name": "@usex/pingu",
"version": "1.0.6",
"description": "A modern ping utility with beautiful CLI output, real-time network analysis, and comprehensive performance metrics",
"keywords": [
"ping",
"pingu",
"cli",
"network",
"diagnostics",
"diagnostic"
],
"author": {
"name": "Ali Torki",
"url": "https://github.com/ali-master",
"email": "ali_4286@live.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ali-master/pingu.git"
},
"bugs": {
"url": "https://github.com/ali-master/pingu/issues"
},
"files": [
"dist",
"assets"
],
"homepage": "https://github.com/ali-master/pingu#readme",
"logo": "https://raw.githubusercontent.com/ali-master/pingu/master/assets/logo.svg",
"bin": "dist/pingu",
"type": "module",
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0",
"npm": ">=8.0.0"
},
"scripts": {
"build": "bun build --compile --minify --sourcemap ./src/cli.tsx --outfile dist/pingu",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"test": "cross-env CI=true vitest --typecheck",
"test:watch": "bun run test --watch",
"test:ui": "bun run test:watch --ui --coverage.enabled=true",
"test:bench": "bun run test bench",
"test:coverage": "bun run test run --coverage",
"test:debug": "vitest --inspect-brk --pool forks --poolOptions.forks.singleFork",
"test:debug:watch": "bun run test:debug --watch --poolOptions.threads.isolate false",
"format": "prettier --write src tests",
"prepublish:next": "bun run build",
"publish:next": "bun publish --access public --tag next",
"prepublish:npm": "bun run build",
"publish:npm": "bun publish --access public",
"prerelease": "bun run build",
"release": "release-it",
"preinstall": "bunx only-allow bun"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"gradient-string": "^3.0.0",
"ink": "^6.2.3",
"meow": "^13.2.0",
"react": "^19.1.1"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^8.0.1",
"@testing-library/react": "^16.3.0",
"@types/bun": "^1.2.21",
"@types/react": "^19.1.12",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"chalk": "^5.6.0",
"cross-env": "^10.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"ink-testing-library": "^4.0.0",
"prettier": "^3.6.2",
"react-devtools-core": "^6.1.5",
"release-it": "^19.0.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"packageManager": "bun@1.2.21",
"publishConfig": {
"access": "public"
}
}