-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.32 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
{
"name": "devkits",
"version": "0.7.0",
"packageManager": "pnpm@11.1.2",
"description": "Handy developer tools for your terminal — uuid, base64, jwt, color, hash & more",
"type": "module",
"bin": {
"dt": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "pnpm build",
"build": "tsup",
"dev": "tsx src/index.ts",
"test": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"keywords": [
"cli",
"devtools",
"uuid",
"base64",
"jwt",
"color-converter",
"hash",
"terminal"
],
"repository": {
"type": "git",
"url": "https://github.com/yvng-jie/devtools-cli"
},
"homepage": "https://github.com/yvng-jie/devtools-cli#readme",
"bugs": {
"url": "https://github.com/yvng-jie/devtools-cli/issues"
},
"license": "MIT",
"author": "yangfree",
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"chalk": "^5.4.1",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.0.0",
"@types/qrcode": "^1.5.6",
"@vitest/coverage-v8": "^4.1.8",
"eslint": "^10.4.0",
"tsup": "^8.4.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.60.0",
"vitest": "^3.0.0"
}
}