forked from flowernotfound/envui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.91 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
{
"name": "@flowernotfound/envui",
"version": "0.1.0",
"description": "Beautiful environment variable viewer",
"keywords": [
"env",
"environment",
"variables",
"cli",
"terminal",
"printenv"
],
"author": "Hiroaki Mitsuyoshi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flowernotfound/envui.git"
},
"bugs": {
"url": "https://github.com/flowernotfound/envui/issues"
},
"homepage": "https://github.com/flowernotfound/envui#readme",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"envui": "./dist/cli.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write 'src/**/*.{ts,js,json}' 'tests/**/*.{ts,js}' '*.{json,js,ts}'",
"format:check": "prettier --check 'src/**/*.{ts,js,json}' 'tests/**/*.{ts,js}' '*.{json,js,ts}'",
"clean": "rm -rf dist",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"prepublishOnly": "pnpm clean && pnpm check"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/node": "^20.14.10",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.5.3",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
}
}